Re: Online "flat" ISO C resource wanted.



Richard wrote:
Can anyone recommend a good online resource listing all C keywords,
standard system calls, defines etc in a "flat" hierarchy.

I wish to set up some bindings in order to bring up "hints and tips" on
using such keywords/functions from ISO C in an IDE I am working on. So I
would bring up a function and use the current word as the search
criteria to locate an online library/faq

e.g

http://resources.c.all/malloc
http://resources.c.all/typedef
http://resources.c.all/EXIT_SUCCESS

etc

Links to any and all of your favorite online C resources appreciated.


Yes, writing an IDE implies writing the documentation.

The Ide I wrote has a documentation for all the C library.

Each time I added a function to the library of lcc-win32,
I wrote the documentation for it in html format.

Then, a simple table in the IDE allows you
to get at all those definitions without the chore of accessing
the internet.

Years of work, mostly for no tangible reward but the joy
of having written a good system.


jacob
.