diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-01-24 00:09:11 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-01-24 00:09:11 +0100 |
commit | fbd69257b509d3374573282ee08f5d9fc9ed4095 (patch) | |
tree | 28b9ab225e910a8ae279623b08152e310431242c /libft | |
parent | Nice and working (diff) | |
download | 42-cub3d-fbd69257b509d3374573282ee08f5d9fc9ed4095.tar.gz 42-cub3d-fbd69257b509d3374573282ee08f5d9fc9ed4095.tar.bz2 42-cub3d-fbd69257b509d3374573282ee08f5d9fc9ed4095.tar.xz 42-cub3d-fbd69257b509d3374573282ee08f5d9fc9ed4095.tar.zst 42-cub3d-fbd69257b509d3374573282ee08f5d9fc9ed4095.zip |
It ain't much but it's honest work
Diffstat (limited to 'libft')
-rw-r--r-- | libft/src/ft_strcmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libft/src/ft_strcmp.c b/libft/src/ft_strcmp.c index ca5cf60..595f349 100644 --- a/libft/src/ft_strcmp.c +++ b/libft/src/ft_strcmp.c @@ -17,7 +17,7 @@ int ft_strcmp(const char *s1, const char *s2) { - size_t i; + size_t i; i = 0; while (s1[i] == s2[i] && i < ft_strlen(s1) - 1) |