LibC: Fix *scanf consuming extra characters

This commit is contained in:
2024-10-19 12:43:23 +03:00
parent 5fde2cf91a
commit 2464fccadd
3 changed files with 31 additions and 14 deletions

View File

@@ -2,4 +2,4 @@
#include <stdarg.h>
int scanf_impl(const char* format, va_list arguments, int (*getc_fun)(void*), void* data);
int scanf_impl(const char* format, va_list arguments, int (*getc_fun)(bool advance, void*), void* data);