X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=mware%2Fhex.c;h=02f9e475304ce34a13c0cbc7c06d8fea0e866fc3;hb=5f3952176a4e9a00ca8dd5ec4a6b994958f89e0a;hp=5d797f1b22a259c5efb0a19cb1774e950c66d626;hpb=8ea8887c13de8a1f39412335ab96a4822f192c8a;p=bertos.git diff --git a/mware/hex.c b/mware/hex.c old mode 100755 new mode 100644 index 5d797f1b..02f9e475 --- a/mware/hex.c +++ b/mware/hex.c @@ -1,4 +1,4 @@ -/*! +/** * \file * * * \brief Poor man's hex arrays (implementation). + * + * \version $Id$ + * + * \author Bernardo Innocenti */ +/*#* + *#* $Log$ + *#* Revision 1.4 2006/07/19 12:56:28 bernie + *#* Convert to new Doxygen style. + *#* + *#* Revision 1.3 2006/02/10 11:30:48 bernie + *#* C++ fixes. + *#* + *#* Revision 1.2 2005/03/01 23:32:05 bernie + *#* Give due credit for this astounding creation. + *#* + *#*/ + +#include "hex.h" + const char hex_tab[16] = { '0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f' }; const char HEX_tab[16] = { '0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F' };