minishell/parser/static/headers/field_identifiers.h
2024-06-09 19:16:09 +02:00

36 lines
1.3 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* field_identifiers.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* 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 */
/* */
/* ************************************************************************** */
#ifndef FIELD_IDENTIFIERS_H
# define FIELD_IDENTIFIERS_H
enum e_field_identifiers {
field_alternative = 1,
field_arg = 2,
field_body = 3,
field_cases = 4,
field_cmd = 5,
field_cmds = 6,
field_condition = 7,
field_consequence = 8,
field_dest = 9,
field_fd = 10,
field_left = 11,
field_name = 12,
field_op = 13,
field_redirect = 14,
field_right = 15,
field_value = 16,
field_variable = 17,
};
#endif // FIELD_IDENTIFIERS_H