diff --git a/src/sys/misc/misc_string_conv.c b/src/sys/misc/misc_string_conv.c new file mode 100755 index 0000000..f99515f --- /dev/null +++ b/src/sys/misc/misc_string_conv.c @@ -0,0 +1,15 @@ +/* + "misc_string_conv.c" + + created by: grayspace aka J. Leveille + for: UbixOS Project + date: July 7, 2002 + + purpose: functions/macro for dealing with misc string conversion + + $Id$ +*/ + +const char a_hexvals[] = +{ '0', '1', '2', '3', '4', '5', '6', '7', + '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };