34 lines
1.8 KiB
C
34 lines
1.8 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* symbols_names_2.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/04/14 19:17:54 by maiboyer #+# #+# */
|
|
/* Updated: 2024/04/14 19:18:20 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "./symbols_names.h"
|
|
|
|
void symbols_names_10(t_symbols_names_array *v)
|
|
{
|
|
v->a[aux_sym_declaration_command_repeat1] = "declaration_command_repeat1";
|
|
v->a[aux_sym_unset_command_repeat1] = "unset_command_repeat1";
|
|
v->a[aux_sym_command_repeat1] = "command_repeat1";
|
|
v->a[aux_sym_command_repeat2] = "command_repeat2";
|
|
v->a[aux_sym_variable_assignments_repeat1] \
|
|
= "variable_assignments_repeat1";
|
|
v->a[aux_sym_heredoc_body_repeat1] = "heredoc_body_repeat1";
|
|
v->a[aux_sym__literal_repeat1] = "_literal_repeat1";
|
|
v->a[aux_sym_arithmetic_expansion_repeat1] \
|
|
= "arithmetic_expansion_repeat1";
|
|
v->a[aux_sym_concatenation_repeat1] = "concatenation_repeat1";
|
|
v->a[aux_sym_string_repeat1] = "string_repeat1";
|
|
v->a[aux_sym__expansion_regex_repeat1] = "_expansion_regex_repeat1";
|
|
v->a[aux_sym__concatenation_in_expansion_repeat1] \
|
|
= "_concatenation_in_expansion_repeat1";
|
|
}
|
|
|
|
/* EOF symbols_names_2.c */
|