Sistema l'errore da me commesso in fase di conversione...
[bertos.git] / mware / formatwr.h
old mode 100755 (executable)
new mode 100644 (file)
index 3be5896..48aa385
@@ -1,8 +1,8 @@
-/*!
+/**
  * \file
  * <!--
  * Copyright 2003, 2004 Develer S.r.l. (http://www.develer.com/)
- * This file is part of DevLib - See devlib/README for information.
+ * This file is part of DevLib - See README.devlib for information.
  * -->
  *
  * \version $Id$
 
 /*#*
  *#* $Log$
+ *#* Revision 1.11  2006/07/19 12:56:27  bernie
+ *#* Convert to new Doxygen style.
+ *#*
+ *#* Revision 1.10  2005/11/04 16:20:02  bernie
+ *#* Fix reference to README.devlib in header.
+ *#*
+ *#* Revision 1.9  2005/07/19 07:25:46  bernie
+ *#* Use appconfig.h instead of cfg/config.h.
+ *#*
+ *#* Revision 1.8  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
  *#* Revision 1.7  2005/02/16 20:28:03  bernie
  *#* Add %S formatter.
  *#*
 #define MWARE_FORMATWR_H
 
 #include <stdarg.h> /* va_list */
-#include <config.h>
-#include <cpu.h>    /* CPU_HARVARD */
+#include <appconfig.h>
+#include <cfg/cpu.h>    /* CPU_HARVARD */
 
-/*!
+/**
  * \name _formatted_write() configuration
  * \{
  */
@@ -53,7 +65,7 @@
 /* \} */
 
 #ifndef CONFIG_PRINTF_RETURN_COUNT
-       /*! Enable/disable _formatted_write return value */
+       /** Enable/disable _formatted_write return value */
        #define CONFIG_PRINTF_RETURN_COUNT 1
 #endif
 
@@ -65,7 +77,7 @@ _formatted_write(
        va_list ap);
 
 #if CPU_HARVARD
-       #include "pgm.h"
+       #include <mware/pgm.h>
        int _formatted_write_P(
                const char * PROGMEM format,
                void put_char_func(char c, void *user_data),