Normed the private files
This commit is contained in:
parent
993efe4287
commit
b744ceb755
4 changed files with 117 additions and 87 deletions
37
ast/src/_not_done_scripting_print.c
Normal file
37
ast/src/_not_done_scripting_print.c
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* _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);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue