X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=mware%2Fstrtol10.c;h=ee993b0c081c2ae74261bea8674910765b45226f;hb=65d5e175830e8c2a6a70b419e28714661e42e4fa;hp=137772232e57d12c9b4646de1c016e3776913175;hpb=ab425430a31e363120a8847bfed6f23811adeeee;p=bertos.git diff --git a/mware/strtol10.c b/mware/strtol10.c old mode 100755 new mode 100644 index 13777223..ee993b0c --- a/mware/strtol10.c +++ b/mware/strtol10.c @@ -1,8 +1,33 @@ -/*! +/** * \file * * * \brief Poor man's hex arrays (implementation). @@ -13,6 +38,12 @@ /*#* *#* $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. + *#* *#* Revision 1.1 2005/03/15 00:06:30 bernie *#* Simpler, smaller, faster. *#* @@ -20,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 @@ -29,7 +60,7 @@ * * \param first Pointer to first byte of input range (STL-style). * \param last Pointer to end of input range (STL-style). - * Pass NULL to parse up to the first \0. + * Pass NULL to parse up to the first \\0. * \param val Pointer to converted value. * * \return true for success, false for failure. @@ -55,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()