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