43 lines
1.5 KiB
C
43 lines
1.5 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* _not_done_print.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/07/26 11:00:25 by rparodi #+# #+# */
|
|
/* Updated: 2024/09/02 17:01:00 by rparodi ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "ast/_print_ast.h"
|
|
|
|
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_for(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);
|
|
}
|