X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=mware%2Fsprintf.c;h=4bbaab9f08463bacff9e98b3dfbcd20cccac2624;hb=28cb65eef8de61eefb6478d99107778b4ddaa930;hp=b756fb1dec503112d7a0c0ae664470c70db197dd;hpb=f76621bb61f5830efac4a110760ae357d0ffab0f;p=bertos.git diff --git a/mware/sprintf.c b/mware/sprintf.c old mode 100755 new mode 100644 index b756fb1d..4bbaab9f --- a/mware/sprintf.c +++ b/mware/sprintf.c @@ -1,8 +1,33 @@ -/*! +/** * \file * * * \brief sprintf() implementation based on _formatted_write() @@ -13,6 +38,12 @@ /*#* *#* $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 +73,7 @@ #include #include -#include "compiler.h" +#include #include @@ -95,7 +126,7 @@ int PGM_FUNC(sprintf)(char *str, const char * fmt, ...) return result; } -/*! +/** * State information for __sn_put_char() */ struct __sn_state @@ -104,7 +135,7 @@ struct __sn_state size_t len; }; -/*! +/** * formatted_write() callback used [v]snprintf(). */ static void __sn_put_char(char c, void *ptr)