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