02f9e475304ce34a13c0cbc7c06d8fea0e866fc3
[bertos.git] / mware / hex.c
1 /**
2  * \file
3  * <!--
4  * Copyright 2005 Develer S.r.l. (http://www.develer.com/)
5  * This file is part of DevLib - See README.devlib for information.
6  * -->
7  *
8  * \brief Poor man's hex arrays (implementation).
9  *
10  * \version $Id$
11  *
12  * \author Bernardo Innocenti <bernie@develer.com>
13  */
14
15 /*#*
16  *#* $Log$
17  *#* Revision 1.4  2006/07/19 12:56:28  bernie
18  *#* Convert to new Doxygen style.
19  *#*
20  *#* Revision 1.3  2006/02/10 11:30:48  bernie
21  *#* C++ fixes.
22  *#*
23  *#* Revision 1.2  2005/03/01 23:32:05  bernie
24  *#* Give due credit for this astounding creation.
25  *#*
26  *#*/
27
28 #include "hex.h"
29
30 const char hex_tab[16] = { '0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f' };
31 const char HEX_tab[16] = { '0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F' };