X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=mware%2Fhex.c;h=01c41642052419383632fdcfeb0211aaa6255a71;hb=49d4f9b278ec7da35bbf2dcd3f5013940d1a74e3;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..01c41642 --- a/mware/hex.c +++ b/mware/hex.c @@ -1,12 +1,44 @@ -/*! +/** * \file * * * \brief Poor man's hex arrays (implementation). + * + * \version $Id$ + * + * \author Bernardo Innocenti */ + +#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' };