mirror of
https://github.com/DavidGailleton/42-Push_Swap.git
synced 2026-01-27 08:41:58 +00:00
31 lines
1.1 KiB
C
31 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_strncmp.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: mteriier <mteriier@student.42lyon.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2026/01/07 12:36:38 by mteriier #+# #+# */
|
|
/* Updated: 2026/01/07 12:36:40 by mteriier ### ########lyon.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
int ft_strncmp(const char *s1, const char *s2, int n)
|
|
{
|
|
int i;
|
|
int res;
|
|
|
|
i = 0;
|
|
if (n == 0)
|
|
return (0);
|
|
while (i < n - 1 && s1[i] && s1[i] == s2[i])
|
|
{
|
|
i++;
|
|
}
|
|
res = (unsigned char)s1[i] - (unsigned char)s2[i];
|
|
if (res == 0)
|
|
return (1);
|
|
else
|
|
return (0);
|
|
}
|