removed div with a shift
This commit is contained in:
parent
b3edc1f613
commit
ffd6158589
@ -3,7 +3,7 @@
|
||||
unsigned int fmt_8long(char *dest,unsigned long i) {
|
||||
register unsigned long len,tmp;
|
||||
/* first count the number of bytes needed */
|
||||
for (len=1, tmp=i; tmp>7; ++len) tmp/=8;
|
||||
for (len=1, tmp=i; tmp>7; ++len) tmp>>=3;
|
||||
if (dest)
|
||||
for (tmp=i, dest+=len; ; ) {
|
||||
*--dest = (tmp&7)+'0';
|
||||
|
Loading…
x
Reference in New Issue
Block a user