optimize fmt_base64 (Dan Gundlach)

master
leitner 20 years ago
parent 8853a10fc3
commit 828aa295f1

@ -1,6 +1,7 @@
0.23: 0.23:
also recognize EPFNOSUPPORT as EAFNOSUPPORT (groan) also recognize EPFNOSUPPORT as EAFNOSUPPORT (groan)
fix a few man pages fix a few man pages
optimize fmt_base64 (Dan Gundlach)
0.22: 0.22:
uh, the scope_id detection #defined the wrong constant. libowfat uh, the scope_id detection #defined the wrong constant. libowfat

@ -6,18 +6,19 @@ unsigned long fmt_base64(char* dest,const char* src,unsigned long len) {
register const unsigned char* s=(const unsigned char*) src; register const unsigned char* s=(const unsigned char*) src;
unsigned short bits=0,temp=0; unsigned short bits=0,temp=0;
unsigned long written=0,i; unsigned long written=0,i;
if (!dest) return ((len+2)/3)*4;
for (i=0; i<len; ++i) { for (i=0; i<len; ++i) {
temp<<=8; temp+=s[i]; bits+=8; temp<<=8; temp+=s[i]; bits+=8;
while (bits>6) { while (bits>6) {
if (dest) dest[written]=base64[((temp>>(bits-6))&63)]; dest[written]=base64[((temp>>(bits-6))&63)];
++written; bits-=6; ++written; bits-=6;
} }
} }
if (bits) { if (bits) {
temp<<=(6-bits); temp<<=(6-bits);
if (dest) dest[written]=base64[temp&63]; dest[written]=base64[temp&63];
++written; ++written;
} }
while (written&3) { if (dest) dest[written]='='; ++written; } while (written&3) { dest[written]='='; ++written; }
return written; return written;
} }

Loading…
Cancel
Save