|
libft
|
#include "libft.h"Go to the source code of this file.
Functions | |
| int | ft_strncmp (const char *s1, const char *s2, size_t n) |
| String compare. | |
| int ft_strncmp | ( | const char * | s1, |
| const char * | s2, | ||
| size_t | n | ||
| ) |
String compare.
Compares two strings and returns the difference of the first missmatch character or 0 if strings are equal.
| s1 | String |
| s2 | String |
| n | Number of characters to check |
Definition at line 15 of file ft_strncmp.c.