Libft(14) - strncmp
Libft(14) - strncmp STRCMP(3) BSD Library Functions Manual STRCMP(3) NAME strcmp, strncmp -- compare strings LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include int strcmp(const char *s1, const char *s2); int strncmp(const char *s1, const char *s2, size_t n); DESCRIPTION The strcmp() and strncmp() functions lexicographically compare the null-terminated strings s1 and s2. The strncmp() funct..
2021.06.26