shithub: plan9front

ref: f5d1fce9b56143ac90ef0c1c4388ee502f44cfed
dir: /sys/src/libstdio/scanf.c/

View raw version
/*
 * 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;
}