X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=mware%2Fstrtol10.c;h=6521a6a5a560978164d3dbb13ec988497dcb50f4;hb=4654a69f5df97af36ee5456d20cbccdc19012dc2;hp=67ac010d11267519d2df4730b45657aae104ce8a;hpb=cdf3e45aaa38fc701dceeb57e6ceedd6ca68f408;p=bertos.git diff --git a/mware/strtol10.c b/mware/strtol10.c old mode 100755 new mode 100644 index 67ac010d..6521a6a5 --- a/mware/strtol10.c +++ b/mware/strtol10.c @@ -1,8 +1,33 @@ -/*! +/** * \file * * * \brief Poor man's hex arrays (implementation). @@ -11,19 +36,9 @@ * \author Bernardo Innocenti */ -/*#* - *#* $Log$ - *#* Revision 1.2 2005/04/11 18:10:45 bernie - *#* Doxygen fixes. - *#* - *#* Revision 1.1 2005/03/15 00:06:30 bernie - *#* Simpler, smaller, faster. - *#* - *#*/ - #include "strtol10.h" -/*! +/** * Convert a formatted base-10 ASCII number to unsigned long binary representation. * * Unlike the standard strtoul(), this function has an interface @@ -58,7 +73,7 @@ bool strtoul10(const char *first, const char *last, unsigned long *val) } -/*! +/** * Convert a formatted base-10 ASCII number to signed long binary representation. * * \see strtoul10()