adding split substr strlen

This commit is contained in:
Maoake Teriierooiterai
2026-01-08 13:50:38 +01:00
parent 2f4498d2c5
commit 8dbf9f6c6e
6 changed files with 21 additions and 6 deletions

View File

@@ -13,8 +13,14 @@
#ifndef PARSING_H
# define PARSING_H
#include <stdlib.h>
#include "push_swap.h"
int ft_atoi(const char *nptr);
t_stacks *init_big_stacks(int argc, char **argv);
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);
#endif