关于gcc的函数落明

关于gcc的函数说明
怎么查找gcc定义的标准库函数的说明文档?就好想MS有MSDN那样?
linux 下 man 出来的文档和gcc是一致的吗?

有点弱,也不想费功夫去求证了,先到先得哦。

------解决方案--------------------
gcc是编译器,库函数跟编译器没关系...
MS有MSDN是因为微软有套自己的东西,一大堆API,所以有个说明文档。
你要看文档就man就是了,如果要看c++的文档去网上下一个C++Library+Reference
------解决方案--------------------
是glibc,与gcc没关系。

也有posix规定的函数, 属于manpage-posix。
------解决方案--------------------
库函数请查glibc的manual
http://www.gnu.org/software/libc/manual/

gcc的规范请查gcc的网站
http://gcc.gnu.org/onlinedocs/

/usr/include下是放头文件的,又不只是GCC的……
GCC当然与标准要保持一致

本来标准就没要求声明数组的size必须是常量:
If the size is an expression that is not an integer constant expression: if it occurs in a
declaration at function prototype scope, it is treated as if it were replaced by *; otherwise,
each time it is evaluated it shall have a value greater than zero.