welibc
A clear, secure, and well documented standard C library
|
Defines the strlen function. More...
#include <string.h>
Go to the source code of this file.
Functions | |
size_t | strlen (const char *s) |
Computes the length of a string. More... | |
Defines the strlen function.
Definition in file strlen.c.
size_t strlen | ( | const char * | s | ) |
Computes the length of a string.
*s | String having its length computed |
The strlen function computes the length of the string pointed to by s.
Definition at line 51 of file strlen.c.
Referenced by strcat(), strcmp(), strcpy(), strcspn(), strncat(), strncmp(), strncpy(), strrchr(), and strstr().