libowfat/scan/scan_ulong.c

6 lines
129 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_ulong(const char* src,unsigned long int* dest) {
return scan_ulongn(src,((size_t)-1)/2,dest);
2001-02-02 17:54:47 +00:00
}