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

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

int vsnprintf (char* s, size_t n, const char* format, va_list arg)
  { return _vsnprintf ( s, n, format, arg); }