42cursus(24)
-
Libft(12) - strrchr
Libft(12) - strrchr STRCHR(3) BSD Library Functions Manual STRCHR(3) NAME strchr, strrchr -- locate character in string LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include char * strchr(const char *s, int c); char * strrchr(const char *s, int c); DESCRIPTION The strchr() function locates the first occurrence of c (converted to a char) in the string pointed to by s. The terminating null char..
2021.06.26 -
Libft(11) - strchr
Libft(11) - strchr STRCHR(3) BSD Library Functions Manual STRCHR(3) NAME strchr, strrchr -- locate character in string LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include char * strchr(const char *s, int c); char * strrchr(const char *s, int c); DESCRIPTION The strchr() function locates the first occurrence of c (converted to a char) in the string pointed to by s. The terminating null chara..
2021.06.26 -
Libft(10) - strlcat
Libft(10) - strlcat STRLCPY(3) BSD Library Functions Manual STRLCPY(3) NAME strlcpy, strlcat -- size-bounded string copying and concatenation LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include size_t strlcpy(char * restrict dst, const char * restrict src, size_t dstsize); size_t strlcat(char * restrict dst, const char * restrict src, size_t dstsize); DESCRIPTION The strlcpy() and strlcat()..
2021.06.26 -
Libft(9) - strlcpy
Libft(9) - strlcpy STRLCPY(3) BSD Library Functions Manual STRLCPY(3) NAME strlcpy, strlcat -- size-bounded string copying and concatenation LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include size_t strlcpy(char * restrict dst, const char * restrict src, size_t dstsize); size_t strlcat(char * restrict dst, const char * restrict src, size_t dstsize); DESCRIPTION The strlcpy() and strlcat() ..
2021.06.26 -
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 -
Libft(7) - memcmp
Libft(7) - memcmp MEMCMP(3) BSD Library Functions Manual MEMCMP(3) NAME memcmp -- compare byte string LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include int memcmp(const void *s1, const void *s2, size_t n); DESCRIPTION The memcmp() function compares byte string s1 against byte string s2. Both strings are assumed to be n bytes long. RETURN VALUES The memcmp() function returns zero if the tw..
2021.06.26