|
||
size_t strlen( char *s )
char *s; /* a string */
|
|
|
Synopsis |
#include "string.h"
The strlen function determines the length of the string s , not including the null-terminator.
|
|
Parameters |
s is a null-terminated string.
|
|
Return Value |
strlen returns the length of the string. |
|
|
|