4 * Copyright 2002, 2004, 2005 Develer S.r.l. (http://www.develer.com/)
5 * This file is part of DevLib - See README.devlib for information.
8 * \brief sprintf() implementation based on _formatted_write()
11 * \author Bernardo Innocenti <bernie@develer.com>
16 *#* Revision 1.10 2005/04/11 19:10:28 bernie
17 *#* Include top-level headers from cfg/ subdir.
19 *#* Revision 1.9 2005/02/18 12:48:01 bernie
20 *#* Fix bug with NULL buffers (caught with unit test).
22 *#* Revision 1.8 2005/02/18 12:34:29 bernie
23 *#* Include <mware/pgm.h> explicitly for non-Harvard archs.
25 *#* Revision 1.7 2004/12/31 17:47:45 bernie
26 *#* Rename UNUSED() to UNUSED_ARG().
28 *#* Revision 1.6 2004/11/16 21:15:19 bernie
29 *#* Fix off-by-one bug in [v]snprintf().
31 *#* Revision 1.5 2004/10/03 18:54:36 bernie
32 *#* sprintf(): Fix a serious bug; snprintf(): New function.
34 *#* Revision 1.4 2004/08/25 14:12:09 rasky
35 *#* Aggiornato il comment block dei log RCS
37 *#* Revision 1.3 2004/06/27 15:20:26 aleph
38 *#* Change UNUSED() macro to accept two arguments: type and name;
39 *#* Add macro GNUC_PREREQ to detect GCC version during build;
40 *#* Some spacing cleanups and typo fix
42 *#* Revision 1.2 2004/06/03 11:27:09 bernie
43 *#* Add dual-license information.
46 #include <mware/formatwr.h>
47 #include <mware/pgm.h>
48 #include <cfg/compiler.h>
53 static void __str_put_char(char c, void *ptr)
56 * This Does not work on Code Warrior. Hmm...
57 * *(*((char **)ptr))++ = c;
64 static void __null_put_char(UNUSED_ARG(char, c), UNUSED_ARG(void *, ptr))
70 int PGM_FUNC(vsprintf)(char *str, const char * PGM_ATTR fmt, va_list ap)
76 result = PGM_FUNC(_formatted_write)(fmt, __str_put_char, &str, ap);
78 /* Terminate string */
82 result = PGM_FUNC(_formatted_write)(fmt, __null_put_char, 0, ap);
89 int PGM_FUNC(sprintf)(char *str, const char * fmt, ...)
95 result = PGM_FUNC(vsprintf)(str, fmt, ap);
102 * State information for __sn_put_char()
111 * formatted_write() callback used [v]snprintf().
113 static void __sn_put_char(char c, void *ptr)
115 struct __sn_state *state = (struct __sn_state *)ptr;
125 int PGM_FUNC(vsnprintf)(char *str, size_t size, const char * PGM_ATTR fmt, va_list ap)
129 /* Make room for traling '\0'. */
134 struct __sn_state state;
138 result = PGM_FUNC(_formatted_write)(fmt, __sn_put_char, &state, ap);
140 /* Terminate string. */
144 result = PGM_FUNC(_formatted_write)(fmt, __null_put_char, 0, ap);
151 int PGM_FUNC(snprintf)(char *str, size_t size, const char * fmt, ...)
157 result = PGM_FUNC(vsnprintf)(str, size, fmt, ap);