MCPcopy Index your code
hub / github.com/GJDuck/e9patch / fscanf

Function fscanf

examples/stdlib.c:4699–4706  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4697}
4698
4699static int fscanf(FILE *stream, const char *format, ...)
4700{
4701 va_list ap;
4702 va_start(ap, format);
4703 int result = vfscanf(stream, format, ap);
4704 va_end(ap);
4705 return result;
4706}
4707
4708static int fscanf_unlocked(FILE *stream, const char *format, ...)
4709{

Callers 4

test_stdioFunction · 0.85
realMainFunction · 0.85
initFunction · 0.85
initFunction · 0.85

Calls 1

vfscanfFunction · 0.85

Tested by 1

test_stdioFunction · 0.68