Changing the parsing to be traited in string and not in char

This commit is contained in:
Raphaël 2024-03-31 20:09:19 +02:00
parent 8941f67cf1
commit 70c9c5aac1
8 changed files with 161 additions and 299 deletions

View file

@ -6,7 +6,7 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/03/28 14:41:15 by rparodi #+# #+# */
/* Updated: 2024/03/29 14:46:30 by rparodi ### ########.fr */
/* Updated: 2024/03/31 19:52:56 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
@ -14,7 +14,6 @@
#define MINISHELL_H
# include "./type_rust.h"
# include "../libft/get_next_line.h"
# include <unistd.h>
# include <fcntl.h>
@ -28,7 +27,9 @@
# include <readline/readline.h>
# include <readline/history.h>
i32 main(void);
i32 main(void);
i32 ft_strcmp(const char *s1, const char *s2);
void ft_exit(i8 *str, u8 exit_status);
i8 **ft_split(i8 const *s, i8 c);
#endif