views:

1066

answers:

4

Sometimes I want to look up the implementations of functions in the stdlib, I've downloaded the sourcecode, but it's quite messy.

Just greping is not really suitable because of the many hits.

Does anyone know a webpage doxygen style that has the documentation.

The same goes for the linux kernel.

Thanks

+2  A: 

How about this for libc documentation? And perhaps this for the kernel? There is also Google Code search; here is an example search.

More on Google Code Search You can enter search queries like this: package:linux-2.6 malloc for any references to malloc in the linux-2.6 kernel.

Matthew Talbert
A: 

If you are using GNU C (glibc), the functions (beyond the GNU extensions) follow the POSIX standard as far as their arguments, implementation, failure and return values. If you want to peek under the hood of static members, you'll have to look at the code.

Every push (that I can remember) to try and adopt something like Doxygen for glibc was rejected for the following reasons:

  1. Redundant, POSIX already documents almost everything thats exposed, as well as man and info pages.
  2. Too much work initially
  3. More work for maintainers

As far as the kernel goes, Linux does use a system very similar to Doxygen called Kerneldoc.

Tim Post
A: 

To help navigate the source to glibc, perhaps try something like ctags or cscope?

Note: I get dumber every time I look at the glibc source, so please be careful! :)

Mike K
A: 

You should check if your distribution is using the vanilla GLIBC or the EGLIBC fork (Debian and Ubuntu have switched to EGLIBC).

Anyway, the repository browser for GLIBC is at http://sourceware.org/git/?p=glibc.git

The source is a bit complicated by the presence of multiple versions of the same files.

For EGLIBC: http://www.eglibc.org/cgi-bin/viewcvs.cgi/