Reputation: 1243
I've searched the internet for some reference material containing a list of all C/C++ functions in the libraries that come with MinGW, but I only found large websites with hundreds of pages each one describing in depth every function. But I just want a plain list of all functions with their names and the required parameter types/names, and the header where each one of them can be found, without all the details (because I already know what they do, I just want to have a quick reference list that I could print, especially because I can't seem to remember the parameter lists).
Upvotes: 1
Views: 1256
Reputation: 34677
Perhaps the Microsoft Visual Studio runtime reference would address your concern?
Upvotes: 0