c++ - Where can I find the implementation of strncpy() function in GCC source code? -
i have download source code of gcc, using command:
svn checkout svn://gcc.gnu.org/svn/gcc/trunk somelocaldir
who can tell me can find implementation of standard library function strncpy()?
thank you.
gcc
doesn't contain source of strncpy
, gcc
contains compiler code , not standard library code.
you want source gnu libc (glibc):
this link current trunk implementation of strncpy.c
in glibc.
Comments
Post a Comment