libowfat/scan/scan_xshort.c

33 lines
766 B
C
Raw Normal View History

2001-02-02 17:54:47 +00:00
#include "scan.h"
#ifdef UNITTEST
#undef UNITTEST
#include "scan_fromhex.c"
#define UNITTEST
#endif
2006-11-07 17:56:05 +00:00
size_t scan_xshort(const char* src,unsigned short* dest) {
register const char *tmp=src;
register unsigned short l=0;
register unsigned char c;
2014-03-14 02:15:38 +00:00
while ((l>>(sizeof(l)*8-4))==0 && (c=(unsigned char)scan_fromhex((unsigned char)*tmp))<16) {
l=(unsigned short)((l<<4)+c);
++tmp;
}
2001-02-02 17:54:47 +00:00
*dest=l;
2014-03-14 02:15:38 +00:00
return (size_t)(tmp-src);
2001-02-02 17:54:47 +00:00
}
#ifdef UNITTEST
#include <assert.h>
int main() {
unsigned short i;
assert(scan_xshort("fefe",&i)==4 && i==0xfefe);
assert(scan_xshort("0xfefe",&i)==1); // 0x not supported, will scan the 0
assert(scan_xshort("+fefe",&i)==0);
assert(scan_xshort("fefec0de",&i)==4 && i==0xfefe); // test truncation
return 0;
}
#endif