Merge branch 'indexer'

This commit is contained in:
2026-01-14 11:19:07 +01:00
9 changed files with 91 additions and 2 deletions

View File

@@ -34,5 +34,6 @@ int ft_strlcat(char *dst, const char *src, int size);
char *join_all(int argc, char **argv);
char **split_all(char *tab);
float compute_disorder(char **strs, int pos);
void indexer(t_stacks *stacks);
#endif

View File

@@ -16,6 +16,7 @@
typedef struct s_stack
{
int value;
long long index;
struct s_stack *next;
struct s_stack *previous;
} t_stack;