Reverted latest changes.
[reactos.git] / reactos / lib / msvcrt / conio / cscanf.c
1 #include <msvcrt/conio.h>
2 #include <msvcrt/stdarg.h>
3 #include <msvcrt/stdio.h>
4
5 int _cscanf(char *fmt, ...)
6 {
7 int cnt;
8 va_list ap;
9
10 //fixme cscanf should scan the console's keyboard
11 va_start(ap, fmt);
12 cnt = __vscanf(fmt, ap);
13 va_end(ap);
14
15 return cnt;
16 }
17
18