1 2 3 4 5 6 7 8 9 10 11 12 13
/* * stoi16.hpp: * written by palmers / teso */ #ifndef __STOI16_C #define __STOI16_C #include <string> /** * Convert a string of hexadecimal charcters to an unsigned integer. */ unsigned int stoi16 (string); #endif /* __STOI16_C */