Skip to content

Instantly share code, notes, and snippets.

@saiccoumar
Last active January 12, 2024 21:14
Show Gist options
  • Save saiccoumar/67559e5427c084ad61026dae8c540c21 to your computer and use it in GitHub Desktop.
Save saiccoumar/67559e5427c084ad61026dae8c540c21 to your computer and use it in GitHub Desktop.
printf
...
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