MCPcopy Create free account
hub / github.com/GJDuck/e9patch / scanf

Function scanf

examples/stdlib.c:4717–4724  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4715}
4716
4717static int scanf(const char *format, ...)
4718{
4719 va_list ap;
4720 va_start(ap, format);
4721 int result = vscanf(format, ap);
4722 va_end(ap);
4723 return result;
4724}
4725
4726static int scanf_unlocked(const char *format, ...)
4727{

Callers

nothing calls this directly

Calls 1

vscanfFunction · 0.85

Tested by

no test coverage detected