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

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

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

int vwscanf(const wchar_t * __restrict__ format, va_list arg) {
  return vfwscanf(stdin, format, arg);
}