Welcome to mirror list, hosted at ThFree Co, Russian Federation.

snwprintf.c « stdio « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 42b05b2928a3654cdc5d95f4d55f90fa8208e18c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdarg.h>
#include <wchar.h>

int  snwprintf(wchar_t* buffer, size_t n, const wchar_t* format, ...)
{
    int retval;
    va_list argptr;
          
    va_start( argptr, format );
    retval = _vsnwprintf( buffer, n, format, argptr );
    va_end( argptr );
    return retval;
}