]> pd.if.org Git - pdclib/blob - functions/stdio/vsnprintf.c
Porting current working set from CVS.
[pdclib] / functions / stdio / vsnprintf.c
1 /* $Id$ */
2
3 /* Release $Name$ */
4
5 /* vsnprintf( char *, size_t, const char *, va_list ap )
6
7    This file is part of the Public Domain C Library (PDCLib).
8    Permission is granted to use, modify, and / or redistribute at will.
9 */
10
11 #include <stdio.h>
12 #include <stdarg.h>
13
14 #ifndef REGTEST
15
16 typedef char wchar_t;
17
18 int vsnprintf( char * str, size_t size, const char * format, _PDCLIB_va_list arg )
19 {
20     /* TODO: This function should interpret format as multibyte characters. */
21     /* TODO: Implement */
22     return 0;
23 }
24
25 #endif
26
27 #ifdef TEST
28 #include <_PDCLIB_test.h>
29
30 int main( void )
31 {
32     TESTCASE( NO_TESTDRIVER );
33     return TEST_RESULTS;
34 }
35
36 #endif