LibC: Implement almost POSIX compliant *scanf functions

Only wchar strings and floating point values are not parsed
This commit is contained in:
2024-01-22 17:01:37 +02:00
parent de4fdcd898
commit 606a7cb313
4 changed files with 517 additions and 10 deletions

View File

@@ -0,0 +1,5 @@
#pragma once
#include <stdarg.h>
int scanf_impl(const char* format, va_list arguments, int (*getc_fun)(void*), void* data);