u32和字符串的转换函数

/**********************************************************
** 函数名:u32tostr
** 功能描述:将一个32位的变量dat转为字符串,比如把1234转换为“1234”
** 输入参数:dat为待转换的long型变量
                   str为指向字符数组的指针,转换后的字符串放在其中
** 输出参数:无
***********************************************************/
void u32tostr(unsigned long dat,char *str) 
{
char temp[20];
unsigned char i=0,j=0;
i=0;
while(dat)
{
temp[i]=dat%10+0x30;
i++;
dat/=10;
}
j=i;
for(i=0;i{
  str[i]=temp[j-i-1];
}
if(!i) {str[i++]='0';}
str[i]=0;
}
/**********************************************************
** 函数名:strtou32
** 功能描述:将一个字符串转为32位的变量,比如把"1234"转换为1234
** 输入参数:str为指向待转换的字符串

** 输出参数:无

** 返回:转换完成的long型变量

***********************************************************/
unsigned long strtou32(char *str) 
{
unsigned long temp=0;
unsigned long fact=1;
unsigned char len=strlen(str);  //头文件中要包含#include
unsigned char i;
for(i=len;i>0;i--)
{
temp+=((str[i-1]-0x30)*fact);
fact*=10;
}
return temp;

}

keil注释不乱码去这里:点击打开链接

你可能感兴趣的:(算法)