Sistema l'errore da me commesso in fase di conversione...
[bertos.git] / mware / sprintf.c
old mode 100755 (executable)
new mode 100644 (file)
index b756fb1..53cb920
@@ -1,4 +1,4 @@
-/*!
+/**
  * \file
  * <!--
  * Copyright 2002, 2004, 2005 Develer S.r.l. (http://www.develer.com/)
 
 /*#*
  *#* $Log$
+ *#* Revision 1.11  2006/07/19 12:56:28  bernie
+ *#* Convert to new Doxygen style.
+ *#*
+ *#* Revision 1.10  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.9  2005/02/18 12:48:01  bernie
  *#* Fix bug with NULL buffers (caught with unit test).
  *#*
@@ -42,7 +48,7 @@
 
 #include <mware/formatwr.h>
 #include <mware/pgm.h>
-#include "compiler.h"
+#include <cfg/compiler.h>
 
 #include <stdio.h>
 
@@ -95,7 +101,7 @@ int PGM_FUNC(sprintf)(char *str, const char * fmt, ...)
        return result;
 }
 
-/*!
+/**
  * State information for __sn_put_char()
  */
 struct __sn_state
@@ -104,7 +110,7 @@ struct __sn_state
        size_t len;
 };
 
-/*!
+/**
  * formatted_write() callback used [v]snprintf().
  */
 static void __sn_put_char(char c, void *ptr)