Last active
January 12, 2024 21:14
-
-
Save saiccoumar/67559e5427c084ad61026dae8c540c21 to your computer and use it in GitHub Desktop.
printf
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
... | |
int | |
__printf (const char *format, ...) | |
{ | |
va_list arg; | |
int done; | |
va_start (arg, format); | |
done = __vfprintf_internal (stdout, format, arg, 0); | |
va_end (arg); | |
return done; | |
} | |
// source: https://github.com/bminor/glibc/blob/master/stdio-common/printf.c | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment