From: bernie Date: Tue, 1 Mar 2005 23:32:05 +0000 (+0000) Subject: Give due credit for this astounding creation. X-Git-Tag: 1.0.0~849 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=228db8ac51bbdd432fe6025c68b607783c54758e;p=bertos.git Give due credit for this astounding creation. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@392 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/mware/hex.c b/mware/hex.c index 5d797f1b..930b0ab8 100755 --- a/mware/hex.c +++ b/mware/hex.c @@ -6,7 +6,18 @@ * --> * * \brief Poor man's hex arrays (implementation). + * + * \version $Id$ + * + * \author Bernardo Innocenti */ +/*#* + *#* $Log$ + *#* Revision 1.2 2005/03/01 23:32:05 bernie + *#* Give due credit for this astounding creation. + *#* + *#*/ + 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' }; diff --git a/mware/hex.h b/mware/hex.h index e99f596e..edf05a04 100755 --- a/mware/hex.h +++ b/mware/hex.h @@ -6,6 +6,10 @@ * --> * * \brief Poor man's hex arrays (implementation). + * + * \version $Id$ + * + * \author Bernardo Innocenti */ #ifndef MWARE_HEX_H