diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-29 19:11:10 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-29 19:11:10 +0200 |
commit | 462e664d0fdfbe2e9eae5c7e093c5a23b202dae8 (patch) | |
tree | cff5c7b5852874c8812bfa3dc04cc8df058a2238 /libft/src/ft_memcmp.c | |
parent | Some norm (diff) | |
download | 42-minishell-462e664d0fdfbe2e9eae5c7e093c5a23b202dae8.tar.gz 42-minishell-462e664d0fdfbe2e9eae5c7e093c5a23b202dae8.tar.bz2 42-minishell-462e664d0fdfbe2e9eae5c7e093c5a23b202dae8.tar.xz 42-minishell-462e664d0fdfbe2e9eae5c7e093c5a23b202dae8.tar.zst 42-minishell-462e664d0fdfbe2e9eae5c7e093c5a23b202dae8.zip |
Norm update
Diffstat (limited to '')
-rw-r--r-- | libft/src/ft_memcmp.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libft/src/ft_memcmp.c b/libft/src/ft_memcmp.c index 39fbdf6..5e1a0e9 100644 --- a/libft/src/ft_memcmp.c +++ b/libft/src/ft_memcmp.c @@ -12,15 +12,14 @@ #include <stddef.h> -int - ft_memcmp(const void *s1, const void *s2, size_t n) +int ft_memcmp(const void *s1, const void *s2, size_t n) { const unsigned char *s1_ptr; const unsigned char *s2_ptr; s1_ptr = (unsigned char*)s1; s2_ptr = (unsigned char*)s2; - while (n) + while (n != 0) { if (*s1_ptr != *s2_ptr) return (*s1_ptr - *s2_ptr); |