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

vsnwprintf.c « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 05a1ec9b02bf563147fd373ad6210b197b659432 (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 );}