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

vsnwprintf.c « stdio « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1b59a078b16d6f507c46d08aa021a7f18267a95a (plain)
1
2
3
4
5
#include <stdarg.h>
#include <wchar.h>

int  vsnwprintf(wchar_t *buffer,  size_t n, const wchar_t * format, va_list argptr)
  { return _vsnwprintf( buffer, n, format, argptr );}