reactos/reactos/lib/crtdll/conio/cscanf.c
Boudewijn Dekker ed08466464 Added various files.
--> failed to pass test printing a simple string

svn path=/trunk/; revision=380
1999-04-14 21:27:02 +00:00

26 lines
367 B
C

#include <crtdll/conio.h>
/*
* The next two functions are needed by cscanf
*/
static int
_scan_getche(FILE *fp)
{
return(getche());
}
static int
_scan_ungetch(int c, FILE *fp)
{
return(ungetch(c));
}
int
_cscanf(const char *fmt, ...)
{
// return(_doscan_low(NULL, _scan_getche, _scan_ungetch,
// fmt, (void **) unconst( ((&fmt)+1), char ** )));
}