mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 11:32:56 +00:00
20 lines
241 B
C
20 lines
241 B
C
#include <crtdll/conio.h>
|
|
#include <stdarg.h>
|
|
|
|
int
|
|
_cscanf(char *fmt, ...)
|
|
{
|
|
int cnt;
|
|
|
|
va_list ap;
|
|
|
|
//fixme cscanf should scan the console's keyboard
|
|
|
|
va_start(ap, fmt);
|
|
cnt = __vscanf(fmt, ap);
|
|
va_end(ap);
|
|
return cnt;
|
|
|
|
}
|
|
|
|
|