| 4670 | } |
| 4671 | |
| 4672 | static int vfscanf(FILE *stream, const char *format, va_list ap) |
| 4673 | { |
| 4674 | stdio_lock(stream, -1); |
| 4675 | int result = vfscanf_unlocked(stream, format, ap); |
| 4676 | stdio_unlock(stream); |
| 4677 | return result; |
| 4678 | } |
| 4679 | |
| 4680 | static int vscanf_unlocked(const char *format, va_list ap) |
| 4681 | { |
no test coverage detected