Rob Hudson wrote:

> Probing for resources...
> 
> When coding C/C++ on a Linux machine, what are some good resources to
> find examples on how to use certain header files?  

The authoritative documentation on libc is distributed with glibc.
On Debian, install the glibc-doc package and run "info libc" or browse
file:///usr/share/doc/glibc-doc/html/index.html .

There is also documentation in libstdc++ for the non-C parts of C++.
It doesn't seem to be packaged for debian for gcc 2, but if you're
using gcc 3, then install the libstdc++3-doc package and look in
/usr/share/doc/gcc-3.0-base/libstdc++/ .

> For instance, if I wanted to toy with regexp.h and see how C/C++ can
> use regular expressions, where could I find what methods are available
> when I #include regexp.h, and possibly an example showing that method
> used.

That's in the glibc documentation.

-- 
Bob Miller                              K<bob>
kbobsoft software consulting
http://kbobsoft.com                     [EMAIL PROTECTED]

Reply via email to