X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=mware%2Fstrtol10.c;h=ee993b0c081c2ae74261bea8674910765b45226f;hb=390b6f25afb04fee925be597381e06ce5a9e8110;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..ee993b0c --- a/mware/strtol10.c +++ b/mware/strtol10.c @@ -1,8 +1,33 @@ -/*! +/** * \file * * * \brief Poor man's hex arrays (implementation). @@ -13,6 +38,9 @@ /*#* *#* $Log$ + *#* Revision 1.3 2006/07/19 12:56:28 bernie + *#* Convert to new Doxygen style. + *#* *#* Revision 1.2 2005/04/11 18:10:45 bernie *#* Doxygen fixes. *#* @@ -23,7 +51,7 @@ #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 +86,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()