42a877954c9ee61129b1f22e630b4cd7e34148e9
[reactos.git] / reactos / lib / crtdll / conio / cscanf.c
1 #include <crtdll/conio.h>
2 #include <stdarg.h>
3 #include <stdio.h>
4
5 int
6 _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 return cnt;
17 }
18
19