libft
|
#include "libft.h"
Go to the source code of this file.
Functions | |
int | ft_strequ (const char *s1, const char *s2) |
Checks that two strings are identical. More... | |
int ft_strequ | ( | const char * | s1, |
const char * | s2 | ||
) |
Checks that two strings are identical.
Performs lexicographical comparison between s1
and s2
.
s1 | The first string to be compared. |
s2 | The second string to be compared. |
1
if the strings are identical or 0
otherwise. Definition at line 24 of file ft_strequ.c.