Libft(8) - strlen
Libft(8) - strlen STRLEN(3) BSD Library Functions Manual STRLEN(3) NAME strlen, strnlen -- find length of string LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include size_t strlen(const char *s); size_t strnlen(const char *s, size_t maxlen); DESCRIPTION The strlen() function computes the length of the string s. The strnlen() function attempts to compute the length of s, but never scans beyon..
2021.06.26