Imported Upstream version 2.9.0
[debian/cc1111] / device / lib / vprintf.c
1 /*-------------------------------------------------------------------------
2   vprintf.c - formatted output conversion
3
4              Written By - Martijn van Balen aed@iae.nl (1999)
5              Refactored by - Maarten Brock (2004)
6
7    This library is free software; you can redistribute it and/or
8    modify it under the terms of the GNU Lesser General Public
9    License as published by the Free Software Foundation; either
10    version 2.1 of the License, or (at your option) any later version.
11
12    This library is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15    Lesser General Public License for more details.
16
17    You should have received a copy of the GNU Lesser General Public
18    License along with this library; if not, write to the Free Software
19    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
20
21    In other words, you are welcome to use, share and improve this program.
22    You are forbidden to forbid anyone else to use, share and improve
23    what you give them.   Help stamp out software-hoarding!
24 -------------------------------------------------------------------------*/
25
26 #include <stdarg.h>
27 #include <stdio.h>
28
29 static void put_char_to_stdout( char c, void* p ) _REENTRANT
30 {
31   p;  //make compiler happy
32   putchar( c );
33 }
34
35 int vprintf (const char *format, va_list ap)
36 {
37   return _print_format( put_char_to_stdout, NULL, format, ap );
38 }
39
40 int printf (const char *format, ...)
41 {
42   va_list arg;
43   int i;
44
45   va_start (arg, format);
46   i = _print_format( put_char_to_stdout, NULL, format, arg );
47   va_end (arg);
48
49   return i;
50 }