libowfat/scan/scan_short.c

9 lines
137 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_short(const char* src,short* dest) {
2001-02-02 17:54:47 +00:00
long l;
2006-11-07 17:56:05 +00:00
size_t len=scan_long(src,&l);
2001-02-02 17:54:47 +00:00
*dest=l;
return len;
}