]> pd.if.org Git - pdclib/blob - functions/stdio/vsprintf.c
Tyndur tests
[pdclib] / functions / stdio / vsprintf.c
1 /* vsprintf( char *, const char *, va_list )
2
3    This file is part of the Public Domain C Library (PDCLib).
4    Permission is granted to use, modify, and / or redistribute at will.
5 */
6
7 #include <stdio.h>
8 #include <stdint.h>
9 #include <stdarg.h>
10
11 #ifndef REGTEST
12
13 int vsprintf( char * _PDCLIB_restrict s, const char * _PDCLIB_restrict format, va_list arg )
14 {
15     return vsnprintf( s, SIZE_MAX, format, arg ); /* TODO: Replace with a non-checking call */
16 }
17
18 #endif
19
20 #ifdef TEST
21 #define _PDCLIB_FILEID "stdio/vsprintf.c"
22 #define _PDCLIB_STRINGIO
23 #include <stdint.h>
24 #include <stddef.h>
25 #include "_PDCLIB_test.h"
26
27 static int testprintf( char * s, const char * format, ... )
28 {
29     int i;
30     va_list arg;
31     va_start( arg, format );
32     i = vsprintf( s, format, arg );
33     va_end( arg );
34     return i;
35 }
36
37 int main( void )
38 {
39     char target[100];
40 #include "printf_testcases.h"
41     return TEST_RESULTS;
42 }
43
44 #endif