Where can I find the string.c file (read it)?

I am interested in looking at some of the functions included in the string library for c, but I cannot find the source code (literally, i.e. functions and all) online, and I do not know where to find it.

Thank.

EDIT:

The link provided by pmg shows those functions that are divided into c files, so this is what I need. Thank.

+3
source share
5 answers

Take a look at redhat glibc . It looks like he's somewhat current.

+1
source

You will find it in the compiler source code gcc.

http://www.gnu.org/software/gcc/

+1
source

, , . . , Windows strings.c, linux, find.

Ignore the file I linked before this edit. I had to check the code before sending it. This does not apply to your question. Unfortunately

0
source

Perhaps you are looking for GNU C string.h ?

0
source

You can check the source in any standard libc implementation http://www.gnu.org/software/libc/

0
source

Source: https://habr.com/ru/post/1776568/


All Articles