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

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