This is the mail archive of the libc-help@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Need info about the internals of printf


* Eswar Chandra Tadikonda:

> I actually got stuck at __vfprintf_internal function which i am not able to
> find the definition through tags.

Tags browsers generally do not work with the glibc sources due to heavy
use of the preprocessor, unfortunately.

stdio-common/vfprintf-internal.c has the implementation, and it contains
this:

#ifndef COMPILE_WPRINTF
# define vfprintf       __vfprintf_internal

So its vfprintf function is actually __vfprintf_internal.

> BTW, is this the actual function called internally by printf ?

Yes, calls eventually end up there.

Thanks,
Florian


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]