Fernando Aires Castello
Fernando Aires Castello

Reputation: 1243

Where can I find a list of all functions in the MinGW C libraries?

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

Answers (2)

Dipu
Dipu

Reputation: 8319

I think this is what you are looking for:

  1. http://www.delorie.com/djgpp/doc/libc/
  2. http://www.cppreference.com/

Upvotes: 1

hd1
hd1

Reputation: 34677

Perhaps the Microsoft Visual Studio runtime reference would address your concern?

Upvotes: 0

Related Questions