update: made some small fixes

This commit is contained in:
maix0 2024-10-03 21:38:27 +02:00
parent 11898cba9b
commit 4f1a08cbe6
8 changed files with 47 additions and 17 deletions

View file

@ -6,7 +6,7 @@
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/02 18:43:41 by maiboyer #+# #+# */
/* Updated: 2024/10/02 19:13:19 by maiboyer ### ########.fr */
/* Updated: 2024/10/03 21:32:32 by maiboyer ### ########.fr */
/* */
/* ************************************************************************** */
@ -25,6 +25,7 @@ struct s_ts_pass_def
t_const_str name;
};
t_error ts_apply_passes(t_vec_token ts, t_vec_token *out);
// list passes function here

View file

@ -6,7 +6,7 @@
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/09/26 17:59:23 by maiboyer #+# #+# */
/* Updated: 2024/10/02 19:12:26 by maiboyer ### ########.fr */
/* Updated: 2024/10/03 21:33:14 by maiboyer ### ########.fr */
/* */
/* ************************************************************************** */
@ -58,6 +58,6 @@ bool token_is_meta(t_token tok);
t_token token_clone(t_token *tok);
/* PARSING */
t_error tokeniser(t_const_str raw);
t_error tokenize(t_const_str s, t_vec_token *out);
#endif