Bench algo working

This commit is contained in:
2026-01-08 15:28:07 +00:00
parent 173c11c2e3
commit 38eae5ab16
8 changed files with 247 additions and 4 deletions

View File

@@ -6,7 +6,7 @@
/* By: mteriier <mteriier@student.42lyon.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2026/01/07 08:03:08 by mteriier #+# #+# */
/* Updated: 2026/01/08 12:56:19 by dgaillet ### ########lyon.fr */
/* Updated: 2026/01/08 14:15:37 by dgaillet ### ########lyon.fr */
/* */
/* ************************************************************************** */
@@ -25,5 +25,7 @@ char **ft_split(char const *s, char c);
void free_tab(char **tab);
int checker(int argc, char **argv);
int len_split(char **tab);
char *ft_itoa(int n);
int ft_isdigit(int c);
#endif

View File

@@ -6,7 +6,7 @@
/* By: dgaillet <dgaillet@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/12/08 14:18:06 by dgaillet #+# #+# */
/* Updated: 2026/01/08 14:01:04 by dgaillet ### ########lyon.fr */
/* Updated: 2026/01/08 15:20:03 by dgaillet ### ########lyon.fr */
/* */
/* ************************************************************************** */
@@ -83,4 +83,7 @@ int test1(int argc, char **argv);
/* RADIX */
void radix(t_stacks *stacks);
void secure_write(int fd, char *str, int len);
void ft_putnbr_fd(int nbr, int fd);
#endif