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

vscanf.c « stdio « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 53f54344218208a2e55a8c9eacfeefbb818548b9 (plain)
1
2
3
4
5
6
7
8
9
//  By aaronwl 2003-01-28 for mingw-msvcrt
//  Public domain: all copyrights disclaimed, absolutely no warranties

#include <stdarg.h>
#include <stdio.h>

int vscanf(const char * __restrict__ format, va_list arg) {
  return vfscanf(stdin, format, arg);
}