LibC: Implement almost POSIX compliant *scanf functions
Only wchar strings and floating point values are not parsed
This commit is contained in:
5
libc/include/scanf_impl.h
Normal file
5
libc/include/scanf_impl.h
Normal 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);
|
||||
Reference in New Issue
Block a user