mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 17:10:23 +00:00
LibC: Implement vscanf
libstdc++v3 checks whether vscanf is available and only then makes C99 stdio functions available in the std namespace.
This commit is contained in:
parent
e6747fefa7
commit
4c6a91d0c0
Notes:
sideshowbarker
2024-07-18 18:27:12 +09:00
Author: https://github.com/gunnarbeutner Commit: https://github.com/SerenityOS/serenity/commit/4c6a91d0c0f Pull-request: https://github.com/SerenityOS/serenity/pull/6967
2 changed files with 6 additions and 0 deletions
|
@ -1257,6 +1257,11 @@ int vfscanf(FILE* stream, const char* fmt, va_list ap)
|
|||
return vsscanf(buffer, fmt, ap);
|
||||
}
|
||||
|
||||
int vscanf(const char* fmt, va_list ap)
|
||||
{
|
||||
return vfscanf(stdin, fmt, ap);
|
||||
}
|
||||
|
||||
void flockfile([[maybe_unused]] FILE* filehandle)
|
||||
{
|
||||
dbgln("FIXME: Implement flockfile()");
|
||||
|
|
|
@ -89,6 +89,7 @@ void perror(const char*);
|
|||
int scanf(const char* fmt, ...) __attribute__((format(scanf, 1, 2)));
|
||||
int sscanf(const char* str, const char* fmt, ...) __attribute__((format(scanf, 2, 3)));
|
||||
int fscanf(FILE*, const char* fmt, ...) __attribute__((format(scanf, 2, 3)));
|
||||
int vscanf(const char*, va_list) __attribute__((format(scanf, 1, 0)));
|
||||
int vfscanf(FILE*, const char*, va_list) __attribute__((format(scanf, 2, 0)));
|
||||
int vsscanf(const char*, const char*, va_list) __attribute__((format(scanf, 2, 0)));
|
||||
int setvbuf(FILE*, char* buf, int mode, size_t);
|
||||
|
|
Loading…
Reference in a new issue