Last active
January 12, 2024 21:14
-
-
Save saiccoumar/619d618b67f37269d80b85e29d2eeda1 to your computer and use it in GitHub Desktop.
vfprintf.c
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
extern int | |
__vfprintf (FILE *fp, const char *format, va_list ap) | |
{ | |
return __vfprintf_internal (fp, format, ap, 0); | |
} | |
// source: https://github.com/bminor/glibc/blob/master/stdio-common/vfprintf.c | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment