4 * Copyright 2005 Develer S.r.l. (http://www.develer.com/)
5 * This file is part of DevLib - See README.devlib for information.
8 * \brief Poor man's hex arrays (implementation).
12 * \author Bernardo Innocenti <bernie@develer.com>
17 *#* Revision 1.3 2006/02/10 11:30:48 bernie
20 *#* Revision 1.2 2005/03/01 23:32:05 bernie
21 *#* Give due credit for this astounding creation.
27 const char hex_tab[16] = { '0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f' };
28 const char HEX_tab[16] = { '0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F' };