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