| 4641 | } |
| 4642 | |
| 4643 | static 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 | |
| 4657 | static int vfscanf_unlocked(FILE *stream, const char *format, va_list ap) |
| 4658 | { |