mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-03 03:19:16 +00:00
userspace/libc: implement fprintf function
Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
@ -97,7 +97,7 @@ extern "C"
|
||||
void flockfile(FILE *);
|
||||
FILE *fmemopen(void *restrict, size_t, const char *restrict);
|
||||
FILE *fopen(const char *restrict pathname, const char *restrict mode);
|
||||
int fprintf(FILE *restrict, const char *restrict, ...);
|
||||
int fprintf(FILE *restrict stream, const char *restrict format, ...);
|
||||
int fputc(int c, FILE *stream);
|
||||
int fputs(const char *restrict s, FILE *restrict stream);
|
||||
size_t fread(void *restrict ptr, size_t size, size_t nitems, FILE *restrict stream);
|
||||
|
Reference in New Issue
Block a user