libowfat/scan/scan_xlong.c

8 lines
160 B
C
Raw Normal View History

2001-02-02 17:54:47 +00:00
#include "scan.h"
2006-11-07 17:56:05 +00:00
size_t scan_xlong(const char *src,unsigned long *dest) {
return scan_xlongn(src,((size_t)-1)/2,dest);
2001-02-02 17:54:47 +00:00
}
/* unit tested via scan_xlongn */