fix files

This commit is contained in:
Maoake Teriierooiterai
2026-01-08 18:44:50 +01:00
parent a405d7dad5
commit 00e01ed1f9
8 changed files with 30 additions and 28 deletions

View File

@@ -13,18 +13,18 @@
#ifndef PARSING_H
# define PARSING_H
#include <stdlib.h>
#include "push_swap.h"
# include <stdlib.h>
# include "push_swap.h"
int ft_atoi(const char *nptr);
t_stacks *init_piles(int argc, char **argv, int mod);
int ft_strncmp(const char *s1, const char *s2, int n);
size_t ft_strlen(const char *s);
char *ft_substr(char const *s, unsigned int start, size_t len);
char **ft_split(char const *s, char c);
void free_tab(char **tab);
size_t ft_strlen(const char *s);
char *ft_substr(char const *s, unsigned int start, size_t len);
char **ft_split(char const *s, char c);
void free_tab(char **tab);
int checker(int argc, char **argv);
int len_split(char **tab);
int len_split(char **tab);
char *ft_itoa(int n);
int ft_isdigit(int c);