2001-02-02 17:54:47 +00:00
|
|
|
#include "scan.h"
|
|
|
|
|
2003-05-01 21:25:04 +00:00
|
|
|
unsigned int scan_ulong(const char* src,unsigned long int* dest) {
|
2001-02-02 17:54:47 +00:00
|
|
|
register const char *tmp=src;
|
2003-05-01 21:25:04 +00:00
|
|
|
register unsigned long int l=0;
|
2001-02-02 17:54:47 +00:00
|
|
|
register unsigned char c;
|
|
|
|
while ((c=*tmp-'0')<10) {
|
2003-05-27 20:31:25 +00:00
|
|
|
unsigned long int n;
|
|
|
|
/* division is very slow on most architectures */
|
|
|
|
n=l<<3; if ((n>>3)!=l) break;
|
|
|
|
if (n+(l<<1) < n) break;
|
|
|
|
n+=l<<1;
|
|
|
|
if (n+c < n) break;
|
|
|
|
l=n+c;
|
2001-02-02 17:54:47 +00:00
|
|
|
++tmp;
|
|
|
|
}
|
|
|
|
*dest=l;
|
|
|
|
return tmp-src;
|
|
|
|
}
|