Re: C lib functions



On Thu, 29 May 2008 15:37:31 -0700, Xia wrote:

Is there a way(or where) I can see a certain C lib function, for example
atoi, is implemented? Thanks in advance. Xia

If you want to see how a particular standard library function is
implemented then, as it has already been stated before, you only need to
get your hands on any open source standard library and just dig in.

If, on the other hand, you need to check if a certain function is
available on your system then you can always adopt the ./configure script
approach, which is to try to compile some minimalist test code that uses
that particular function and check if the compilation fails or not.


Hope this helps
Rui Maciel
.