libowfat/scan/scan_short.c
2006-11-07 17:56:05 +00:00

9 lines
137 B
C

#include "scan.h"
size_t scan_short(const char* src,short* dest) {
long l;
size_t len=scan_long(src,&l);
*dest=l;
return len;
}