Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
stdio
vscanf.c
pretty
plain
permalink
blame
history
•
9 lines
•
163 B
1
#include <stdio.h>
2
#include <stdarg.h>
3
4
int vscanf(const char *restrict fmt, va_list ap)
5
{
6
	return vfscanf(stdin, fmt, ap);
7
}
8
9
weak_alias(vscanf,__isoc99_vscanf);