tags:

views:

72

answers:

4

I remember some years ago, when I learned C using Turbo C, it had a extensive documentation on its headers...

My question is: There are something like that for MingW?

+2  A: 

MinGW is just a windows port of GCC, so the official GCC documentation should work (mostly) just fine.

Kitsune
A: 

You can make use of the man pages, if you've installed them.

codaddict
A: 

You mean MinGW-specific headers? Do they exist at all? Just look for standard C and/or C++ references. They're all over the web. Look for gcc info, as MinGW is a Windows port of it.

mingos
+1  A: 

Yes, there are MinGW-specific headers - I mean Windows-specific headers. But I'm also searching for a documentation, I couldn't find one yet.

winnetou