]> pd.if.org Git - pdclib/blob - functions/stdio/vsprintf.c
Re-import from Subversion.
[pdclib] / functions / stdio / vsprintf.c
1 /* ----------------------------------------------------------------------------
2  * $Id$
3  * ----------------------------------------------------------------------------
4  * Public Domain C Library - http://pdclib.sourceforge.net
5  * This code is Public Domain. Use, modify, and redistribute at will.
6  * --------------------------------------------------------------------------*/
7
8 int vsprintf( char * restrict s, const char * restrict format, va_list ap) { /* TODO */ };
9
10 /* PDPC code - unreviewed
11 {
12     int ret;
13
14     ret = vvprintf(format, arg, NULL, s);
15     if (ret >= 0)
16     {
17         *(s + ret) = '\0';
18     }
19     return (ret);
20 }
21 */