Starting the separation between commands & args and the operators

This commit is contained in:
Raphaël 2024-03-31 21:09:46 +02:00
parent 70c9c5aac1
commit 9c4dfafdf7
6 changed files with 89 additions and 66 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/31 19:52:56 by rparodi ### ########.fr */
/* Updated: 2024/03/31 21:04:32 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
@ -27,9 +27,10 @@
# include <readline/readline.h>
# include <readline/history.h>
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);
t_i32 main(void);
t_i32 ft_strcmp(const char *s1, const char *s2);
t_i32 ft_check_type_operators(t_i8 **operators);
void ft_exit(t_str str, t_u8 exit_status);
t_str *ft_split(t_const_str s, t_i8 c);
#endif

View file

@ -6,33 +6,39 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/03/28 14:44:20 by rparodi #+# #+# */
/* Updated: 2024/03/29 11:44:40 by rparodi ### ########.fr */
/* Updated: 2024/03/31 20:53:56 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef TYPE_RUST_H
#define TYPE_RUST_H
#include <stddef.h>
# include <stdbool.h>
# include <stddef.h>
# include <unistd.h>
# define bool int
# define true 1
# define false 0
typedef char *t_str;
typedef const char *t_const_str;
# define u8 unsigned char
# define u16 unsigned short
# define u32 unsigned int
# define u64 unsigned long long
typedef unsigned char t_u8;
typedef char t_i8;
typedef unsigned short t_u16;
typedef short t_i16;
typedef int t_i32;
typedef unsigned int t_u32;
typedef unsigned long long t_u64;
typedef long long t_i64;
typedef ssize_t t_isize;
typedef size_t t_usize;
# define i8 char
# define i16 short
# define i32 int
# define i64 long long
typedef float t_f32;
typedef double t_f64;
# define usize size_t
# define isize ssize_t
typedef int t_file;
# define f32 float
# define f64 double
typedef bool t_error;
# define ERROR 1
# define NO_ERROR 0
#endif