libowfat/fmt/fmt_ulong.c

12 lines
315 B
C
Raw Normal View History

2001-02-02 17:54:47 +00:00
#include "fmt.h"
unsigned int fmt_ulong(char *dest,unsigned long i) {
2001-02-03 21:19:02 +00:00
register unsigned long len,tmp,len2;
2001-02-02 17:54:47 +00:00
/* first count the number of bytes needed */
for (len=1, tmp=i; tmp>9; ++len) tmp/=10;
if (dest)
2001-02-03 21:19:02 +00:00
for (tmp=i, dest+=len, len2=len+1; --len2; tmp/=10)
2001-02-02 17:54:47 +00:00
*--dest = (tmp%10)+'0';
return len;
}