我在哪里可以找到MinGW C库中所有函数的列表?

时间:2022-06-15 15:04:51

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).

我在互联网上搜索了一些参考资料,其中包含MinGW附带的库中所有C / C ++函数的列表,但我只发现了大型网站,每个网页都有数百个页面,每个页面深入描述每个函数。但我只想要一个包含所有函数的简单列表,包括它们的名称和所需的参数类型/名称,以及可以找到每个函数的标题,没有所有细节(因为我已经知道它们做了什么,我只是想有一个我可以打印的快速参考列表,特别是因为我似乎无法记住参数列表)。

2 个解决方案

#1


0  

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

也许Microsoft Visual Studio运行时引用可以解决您的问题?

#2


0  

I think this is what you are looking for:

我认为这就是你要找的东西:

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

#1


0  

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

也许Microsoft Visual Studio运行时引用可以解决您的问题?

#2


0  

I think this is what you are looking for:

我认为这就是你要找的东西:

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