Where to find stdio.h functions implementations?

前端 未结 5 2153
-上瘾入骨i
-上瘾入骨i 2020-11-28 05:36

I study C and I noticed that I can\'t find the implementation file for some header files like, for example, stdio.h which is a library which contains a lot of i

5条回答
  •  感动是毒
    2020-11-28 06:06

    You need to find the source code for a C standard library like glibc: http://www.gnu.org/s/libc/

    You can download the source here: http://ftp.gnu.org/gnu/glibc/ It contains source for all the library functions.

提交回复
热议问题