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

Function sscanf

examples/stdlib.c:4690–4697  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4688}
4689
4690static int sscanf(const char *str, const char *format, ...)
4691{
4692 va_list ap;
4693 va_start(ap, format);
4694 int result = vsscanf(str, format, ap);
4695 va_end(ap);
4696 return result;
4697}
4698
4699static int fscanf(FILE *stream, const char *format, ...)
4700{

Callers 1

test_stdioFunction · 0.85

Calls 1

vsscanfFunction · 0.85

Tested by 1

test_stdioFunction · 0.68