hex.c
Go to the documentation of this file.00001 00041 #include "hex.h" 00042 00043 const char hex_tab[16] = { '0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f' }; 00044 const char HEX_tab[16] = { '0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F' };
