Normed the private files
This commit is contained in:
parent
993efe4287
commit
b744ceb755
4 changed files with 117 additions and 87 deletions
77
ast/src/_here_doc_not_done.c
Normal file
77
ast/src/_here_doc_not_done.c
Normal file
|
|
@ -0,0 +1,77 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* _here_doc_not_done.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/09/02 16:37:28 by rparodi #+# #+# */
|
||||
/* Updated: 2024/09/02 16:39:15 by rparodi ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "app/node.h"
|
||||
#include "ast/ast.h"
|
||||
#include "gmr/symbols.h"
|
||||
#include "me/types.h"
|
||||
#include <stdio.h>
|
||||
|
||||
t_error build_sym_heredoc_body(t_parse_node self, t_const_str input, \
|
||||
t_ast_node *out)
|
||||
{
|
||||
printf("This function is not done '%s'", __func__);
|
||||
(void)(self);
|
||||
(void)(input);
|
||||
(void)(out);
|
||||
return (ERROR);
|
||||
}
|
||||
|
||||
t_error build_sym_heredoc_content(t_parse_node self, t_const_str input, \
|
||||
t_ast_node *out)
|
||||
{
|
||||
printf("This function is not done '%s'", __func__);
|
||||
(void)(self);
|
||||
(void)(input);
|
||||
(void)(out);
|
||||
return (ERROR);
|
||||
}
|
||||
|
||||
t_error build_sym_heredoc_end(t_parse_node self, t_const_str input, \
|
||||
t_ast_node *out)
|
||||
{
|
||||
printf("This function is not done '%s'", __func__);
|
||||
(void)(self);
|
||||
(void)(input);
|
||||
(void)(out);
|
||||
return (ERROR);
|
||||
}
|
||||
|
||||
t_error build_sym_heredoc_redirect(t_parse_node self, t_const_str input, \
|
||||
t_ast_node *out)
|
||||
{
|
||||
printf("This function is not done '%s'", __func__);
|
||||
(void)(self);
|
||||
(void)(input);
|
||||
(void)(out);
|
||||
return (ERROR);
|
||||
}
|
||||
|
||||
t_error build_sym_heredoc_start(t_parse_node self, t_const_str input, \
|
||||
t_ast_node *out)
|
||||
{
|
||||
printf("This function is not done '%s'", __func__);
|
||||
(void)(self);
|
||||
(void)(input);
|
||||
(void)(out);
|
||||
return (ERROR);
|
||||
}
|
||||
|
||||
t_error build_sym_simple_heredoc_body(t_parse_node self, t_const_str input, \
|
||||
t_ast_node *out)
|
||||
{
|
||||
printf("This function is not done '%s'", __func__);
|
||||
(void)(self);
|
||||
(void)(input);
|
||||
(void)(out);
|
||||
return (ERROR);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue