Sistema l'errore da me commesso in fase di conversione...
[bertos.git] / mware / strtol10.c
old mode 100755 (executable)
new mode 100644 (file)
index 1377722..1f6d705
@@ -1,4 +1,4 @@
-/*!
+/**
  * \file
  * <!--
  * Copyright 2005 Develer S.r.l. (http://www.develer.com/)
 
 /*#*
  *#* $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 +26,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 +35,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 +61,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()