updated stuff in ast
This commit is contained in:
parent
27067e158e
commit
7ac90bac55
20 changed files with 171 additions and 150 deletions
|
|
@ -1,67 +0,0 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* not_done_print.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/07/26 11:00:25 by rparodi #+# #+# */
|
||||
/* Updated: 2024/07/30 18:24:16 by maiboyer ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "ast/_function_declaration.h"
|
||||
|
||||
void ast_print_node_if(t_ast_node self)
|
||||
{
|
||||
printf("This function is not done '%s'", __func__);
|
||||
(void)(self);
|
||||
}
|
||||
|
||||
void ast_print_node_case(t_ast_node self)
|
||||
{
|
||||
printf("This function is not done '%s'", __func__);
|
||||
(void)(self);
|
||||
}
|
||||
|
||||
void ast_print_node_case_item(t_ast_node self)
|
||||
{
|
||||
printf("This function is not done '%s'", __func__);
|
||||
(void)(self);
|
||||
}
|
||||
|
||||
void ast_print_node_elif(t_ast_node self)
|
||||
{
|
||||
printf("This function is not done '%s'", __func__);
|
||||
(void)(self);
|
||||
}
|
||||
|
||||
void ast_print_node_else(t_ast_node self)
|
||||
{
|
||||
printf("This function is not done '%s'", __func__);
|
||||
(void)(self);
|
||||
}
|
||||
|
||||
void ast_print_node_for(t_ast_node self)
|
||||
{
|
||||
printf("This function is not done '%s'", __func__);
|
||||
(void)(self);
|
||||
}
|
||||
|
||||
void ast_print_node_until(t_ast_node self)
|
||||
{
|
||||
printf("This function is not done '%s'", __func__);
|
||||
(void)(self);
|
||||
}
|
||||
|
||||
void ast_print_node_while(t_ast_node self)
|
||||
{
|
||||
printf("This function is not done '%s'", __func__);
|
||||
(void)(self);
|
||||
}
|
||||
|
||||
void ast_print_node_heredoc_redirection(t_ast_node self)
|
||||
{
|
||||
printf("This function is not done '%s'", __func__);
|
||||
(void)(self);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue