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

BIN
srcs/bonus/.DS_Store vendored

Binary file not shown.

Binary file not shown.

View File

@@ -6,7 +6,7 @@
/* By: hulamy <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/11/25 14:31:48 by hulamy #+# #+# */
/* Updated: 2019/11/25 14:32:30 by hulamy ### ########.fr */
/* Updated: 2019/11/25 16:06:41 by hulamy ### ########.fr */
/* */
/* ************************************************************************** */

Binary file not shown.

View File

@@ -6,7 +6,7 @@
/* By: hulamy <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/11/25 13:57:19 by hulamy #+# #+# */
/* Updated: 2019/11/25 14:28:12 by hulamy ### ########.fr */
/* Updated: 2019/11/25 15:53:19 by hulamy ### ########.fr */
/* */
/* ************************************************************************** */
@@ -45,6 +45,8 @@
** }
*/
#include "libft.h"
size_t ft_strlcpy(char *dest, const char *src, size_t size)
{
size_t i;

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;
}
}