branch update for HEAD-2003021201
[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 int _cscanf(char *fmt, ...)
7 {
8     int cnt;
9
10     va_list ap;
11
12     //fixme cscanf should scan the console's keyboard
13     va_start(ap, fmt);
14     cnt = __vscanf(fmt, ap);
15     va_end(ap);
16
17     return cnt;
18 }