|
|
1.1 root 1: /*
2: * pANS stdio -- scanf
3: */
4: #include "iolib.h"
5: int scanf(const char *fmt, ...){
6: int n;
7: va_list args;
8: va_start(args, fmt);
9: n=vfscanf(stdin, fmt, args);
10: va_end(args);
11: return n;
12: }
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.