X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=mware%2Fhex.c;h=01c41642052419383632fdcfeb0211aaa6255a71;hb=35ae4275d8730a376ca61a92f08fb447eb2935b3;hp=930b0ab89ba95c67dfed2d34fbdef43445c38032;hpb=228db8ac51bbdd432fe6025c68b607783c54758e;p=bertos.git diff --git a/mware/hex.c b/mware/hex.c old mode 100755 new mode 100644 index 930b0ab8..01c41642 --- a/mware/hex.c +++ b/mware/hex.c @@ -1,8 +1,33 @@ -/*! +/** * \file * * * \brief Poor man's hex arrays (implementation). @@ -12,12 +37,8 @@ * \author Bernardo Innocenti */ -/*#* - *#* $Log$ - *#* 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' };