makefile avec couleurs

This commit is contained in:
Hugo LAMY
2019-11-25 17:13:04 +01:00
parent 96c7ce814e
commit 09087b01a7
83 changed files with 34 additions and 24 deletions

View File

@@ -6,7 +6,7 @@
/* By: hulamy <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/11/25 14:00:13 by hulamy #+# #+# */
/* Updated: 2019/11/25 14:01:09 by hulamy ### ########.fr */
/* Updated: 2019/11/25 15:54:07 by hulamy ### ########.fr */
/* */
/* ************************************************************************** */
@@ -53,7 +53,7 @@ char **ft_split(char const *s, char c)
len = 0;
while (s[i + len] && s[i + len] != c)
len++;
array[j++] = ft_strsub(s, i, len);
array[j++] = ft_substr(s, i, len);
i = i + len - 1;
}
}