37 lines
1.3 KiB
C
37 lines
1.3 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* _not_done_scripting_print.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/09/02 16:40:12 by rparodi #+# #+# */
|
|
/* Updated: 2024/09/02 17:00:54 by rparodi ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "ast/_print_ast.h"
|
|
|
|
void ast_print_node_if(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_until(t_ast_node self)
|
|
{
|
|
printf("This function is not done '%s'", __func__);
|
|
(void)(self);
|
|
}
|