libowfat/fmt/fmt_ulonglong.c

13 lines
352 B
C
Raw Normal View History

2003-05-01 20:40:41 +00:00
#include "fmt.h"
2006-11-07 17:56:05 +00:00
size_t fmt_ulonglong(char *dest,unsigned long long int i) {
2003-05-01 20:40:41 +00:00
register unsigned long len;
unsigned long long tmp,len2;
/* first count the number of bytes needed */
for (len=1, tmp=i; tmp>9; ++len) tmp/=10;
if (dest)
for (tmp=i, dest+=len, len2=len+1; --len2; tmp/=10)
2014-03-14 00:24:25 +00:00
*--dest = (char)((tmp%10)+'0');
2003-05-01 20:40:41 +00:00
return len;
}