feat(ft_strncmp)
This commit is contained in:
parent
e6177d9429
commit
f4238872bb
|
@ -1,3 +1,5 @@
|
||||||
|
main.c
|
||||||
|
|
||||||
# vim
|
# vim
|
||||||
*.swp
|
*.swp
|
||||||
|
|
||||||
|
|
1
Makefile
1
Makefile
|
@ -2,6 +2,7 @@ NAME = libft.a
|
||||||
|
|
||||||
SRC_FILES = ft_strdup.c \
|
SRC_FILES = ft_strdup.c \
|
||||||
ft_strlen.c \
|
ft_strlen.c \
|
||||||
|
ft_strncmp.c \
|
||||||
|
|
||||||
INC_FILES = libft.h \
|
INC_FILES = libft.h \
|
||||||
|
|
||||||
|
|
|
@ -6,5 +6,6 @@
|
||||||
|
|
||||||
char *ft_strdup(const char *s);
|
char *ft_strdup(const char *s);
|
||||||
size_t ft_strlen(const char *s);
|
size_t ft_strlen(const char *s);
|
||||||
|
int ft_strncmp(const char *s1, const char *s2, size_t n);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
#include "libft.h"
|
||||||
|
|
||||||
|
int ft_strncmp(const char *s1, const char *s2, size_t n) {
|
||||||
|
for (size_t i = 0; i < n; i++) {
|
||||||
|
if (!s1[i] || s1[i] != s2[i]) {
|
||||||
|
return s1[i] - s2[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue