You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
271 B
C
14 lines
271 B
C
21 years ago
|
#include "scan.h"
|
||
|
|
||
|
unsigned int scan_xlonglong(const char* src,unsigned long 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;
|
||
|
}
|