This commit is contained in:
lclerel- lclerel-
2026-03-19 19:28:29 +01:00
parent 28fb6502a2
commit 3e313fb203
7 changed files with 14 additions and 14 deletions

View File

@@ -6,7 +6,7 @@
/* By: lclerel- <lclerel-@learner.42.tech> +#+ +:+ +#+ */ /* By: lclerel- <lclerel-@learner.42.tech> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2026/03/16 14:01:43 by lclerel- #+# #+# */ /* Created: 2026/03/16 14:01:43 by lclerel- #+# #+# */
/* Updated: 2026/03/19 11:37:45 by lclerel- ### ########.fr */ /* Updated: 2026/03/19 19:19:38 by lclerel- ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
@@ -21,10 +21,10 @@ char *ft_strdup(char *src)
i = 0; i = 0;
len = 0; len = 0;
if (src == NULL)
return (NULL);
while (src[len]) while (src[len])
{
len++; len++;
}
dst = malloc(sizeof(char) * (len + 1)); dst = malloc(sizeof(char) * (len + 1));
if (dst == NULL) if (dst == NULL)
{ {
@@ -39,8 +39,8 @@ char *ft_strdup(char *src)
return (dst); return (dst);
} }
/*
void ft_putchar(char chara) /*void ft_putchar(char chara)
{ {
write(1, &chara, 1); write(1, &chara, 1);
} }
@@ -61,7 +61,7 @@ int main(void)
{ {
char *dest; char *dest;
dest = ft_strdup("TestTest"); dest = ft_strdup(NULL);
if (dest == NULL) if (dest == NULL)
{ {

BIN
ex0/test Executable file

Binary file not shown.

BIN
ex0/vgcore.45197 Normal file

Binary file not shown.

BIN
ex0/vgcore.46666 Normal file

Binary file not shown.

View File

@@ -6,7 +6,7 @@
/* By: lclerel- <lclerel-@learner.42.tech> +#+ +:+ +#+ */ /* By: lclerel- <lclerel-@learner.42.tech> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2026/03/16 16:07:45 by lclerel- #+# #+# */ /* Created: 2026/03/16 16:07:45 by lclerel- #+# #+# */
/* Updated: 2026/03/19 14:02:24 by lclerel- ### ########.fr */ /* Updated: 2026/03/19 19:23:18 by lclerel- ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
@@ -40,8 +40,8 @@ int ft_ultimate_range(int **range, int min, int max)
*range = tab; *range = tab;
return (size); return (size);
} }
/*
/*void ft_putchar(char c) void ft_putchar(char c)
{ {
write(1, &c, 1); write(1, &c, 1);
} }

View File

@@ -6,7 +6,7 @@
/* By: lclerel- <lclerel-@learner.42.tech> +#+ +:+ +#+ */ /* By: lclerel- <lclerel-@learner.42.tech> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2026/03/16 16:37:56 by lclerel- #+# #+# */ /* Created: 2026/03/16 16:37:56 by lclerel- #+# #+# */
/* Updated: 2026/03/19 11:38:19 by lclerel- ### ########.fr */ /* Updated: 2026/03/19 19:24:56 by lclerel- ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */

View File

@@ -6,7 +6,7 @@
/* By: lclerel- <lclerel-@learner.42.tech> +#+ +:+ +#+ */ /* By: lclerel- <lclerel-@learner.42.tech> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2026/03/18 10:29:59 by lclerel- #+# #+# */ /* Created: 2026/03/18 10:29:59 by lclerel- #+# #+# */
/* Updated: 2026/03/19 11:47:13 by lclerel- ### ########.fr */ /* Updated: 2026/03/19 19:27:27 by lclerel- ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
@@ -93,13 +93,13 @@ char **ft_split(char *str, char *charset)
res[j] = 0; res[j] = 0;
return (res); return (res);
} }
/*
/*int main(void) int main(void)
{ {
char **res; char **res;
int i; int i;
int j; int j;
res = ft_split("Ceci Est+Un-Test^Fait/Par&Lumi.", " ^+/-*&"); res = ft_split("Ceci Est+Un+Test^Fait/Par&Lumi.", "+-^/&");
i = 0; i = 0;
write(1, "Test avec : Ceci Est+Un-Test^Fait/Par&Lumi. : \n", 47); write(1, "Test avec : Ceci Est+Un-Test^Fait/Par&Lumi. : \n", 47);
while (res[i]) while (res[i])