doing the norm

This commit is contained in:
Maoake Teriierooiterai
2026-01-07 13:23:42 +01:00
parent 93e8c10b27
commit e1351b4d2f
9 changed files with 9 additions and 13 deletions

View File

@@ -13,7 +13,7 @@
#ifndef FLAGS_H
# define FLAGS_H
void simple(t_stacks *piles);
void simple(t_stacks *piles);
void medium(t_stacks *piles);
void complex(t_stacks *piles);
void adaptive(t_stacks *piles);

View File

@@ -13,9 +13,9 @@
#ifndef PARSING_H
# define PARSING_H
int ft_atoi(const char *nptr);
int ft_atoi(const char *nptr);
t_stacks *init_big_stacks2(int *tab, int len);
t_stacks *init_big_stacks(int argc, char **argv);
int ft_strncmp(const char *s1, const char *s2, int n);
int ft_strncmp(const char *s1, const char *s2, int n);
#endif