我进行了很多搜索,发现了https://en.wikipedia.org/wiki/C_standard_library不同头文件的漂亮参考,但没有说明它们定义的常用功能。有没有对常用 C 函数的简要参考?
例如:
#include <getopt.h>
#include <event.h>
#include <libpq-fe.h>
#include <config.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/utsname.h>
#include <pwd.h>
#include <grp.h>
..是我在主要 c 程序中经常看到的标题.. 任何人都可以解释它们的作用吗?
注意:如果我看到一个方法 int XXX(char *YYY) ,我如何才能找到该方法在哪个标头中定义..