11 lines
159 B
C
11 lines
159 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int fscanf (fp, format, args)
|
||
|
FILE *fp;
|
||
|
char *format;
|
||
|
unsigned args;
|
||
|
{
|
||
|
return _doscanf (fp, format, &args);
|
||
|
}
|
||
|
|