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

Function vsscanf

examples/stdlib.c:4643–4655  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4641}
4642
4643static int vsscanf(const char *str, const char *format, va_list ap)
4644{
4645 if (str == NULL)
4646 {
4647 errno = EINVAL;
4648 return EOF;
4649 }
4650 struct scanf_stream_s in = {0};
4651 in.stream = NULL;
4652 in.str = str;
4653 in.pos = 0;
4654 return scanf_impl(&in, format, ap);
4655}
4656
4657static int vfscanf_unlocked(FILE *stream, const char *format, va_list ap)
4658{

Callers 1

sscanfFunction · 0.85

Calls 1

scanf_implFunction · 0.85

Tested by

no test coverage detected