Reputation: 6306
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?
Upvotes: 0
Views: 687
Reputation: 11
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.
Upvotes: 1
Reputation: 24542
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.
Upvotes: 0
Reputation: 9341
MinGW is just a windows port of GCC, so the official GCC documentation should work (mostly) just fine.
Upvotes: 2