ref: 59308f15dd6b375de6ed94f7d50c7a1053e3b7c9
dir: /sys/src/ape/lib/ap/stdio/scanf.c/
/* * pANS stdio -- scanf */ #include "iolib.h" int scanf(const char *fmt, ...){ int n; va_list args; va_start(args, fmt); n=vfscanf(stdin, fmt, args); va_end(args); return n; }