27 lines
1.3 KiB
C
27 lines
1.3 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* alias_sequences.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 ALIAS_SEQUENCES_H
|
|
# define ALIAS_SEQUENCES_H
|
|
|
|
# include "../types/type_alias_sequences.h"
|
|
# include "../headers/symbols.h"
|
|
# include "../headers/external_scanner_symbol_identifiers.h"
|
|
# include "../headers/field_identifiers.h"
|
|
|
|
# include "../headers/constants.h"
|
|
|
|
void alias_sequences_0(t_alias_sequences_array *v);
|
|
void alias_sequences_1(t_alias_sequences_array *v);
|
|
void alias_sequences_2(t_alias_sequences_array *v);
|
|
|
|
#endif // ALIAS_SEQUENCES_H
|