![leitner](/assets/img/avatar_default.png)
write generic stralloc and array textcode wrapper functions change textcode API to use long instead of int add cescape fmt and scan functions to textcode add fmt_foldwhitespace to textcode
14 lines
262 B
C
14 lines
262 B
C
#include "scan.h"
|
|
|
|
unsigned int scan_xlong(const char *src,unsigned long *dest) {
|
|
register const char *tmp=src;
|
|
register int l=0;
|
|
register unsigned char c;
|
|
while ((c=scan_fromhex(*tmp))<16) {
|
|
l=(l<<4)+c;
|
|
++tmp;
|
|
}
|
|
*dest=l;
|
|
return tmp-src;
|
|
}
|