Removed more files
This commit is contained in:
parent
f8fca53ae6
commit
1b2f2d6d1b
130 changed files with 8363 additions and 12489 deletions
|
|
@ -1,7 +1,7 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* alias_sequences_0.c :+: :+: :+: */
|
||||
/* alias_sequences.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
|
|
@ -10,21 +10,51 @@
|
|||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "./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"
|
||||
|
||||
void alias_sequences_0(t_alias_sequences_array *v)
|
||||
#include "../headers/constants.h"
|
||||
|
||||
static const \
|
||||
t_alias_sequences_array g_t_alias_sequences_array = {.a = {
|
||||
[6] = {
|
||||
[1] = anon_sym_AT,
|
||||
},
|
||||
[7] = {
|
||||
[0] = anon_sym_AT,
|
||||
},
|
||||
[21] = {
|
||||
[1] = sym_string_content,
|
||||
},
|
||||
[23] = {
|
||||
[0] = anon_sym_AT,
|
||||
},
|
||||
[25] = {
|
||||
[1] = anon_sym_AT,
|
||||
},
|
||||
[37] = {
|
||||
[2] = sym_string_content,
|
||||
},
|
||||
[38] = {
|
||||
[3] = sym_word,
|
||||
},
|
||||
[39] = {
|
||||
[0] = sym_regex,
|
||||
},
|
||||
[42] = {
|
||||
[1] = anon_sym_AT,
|
||||
},
|
||||
[50] = {
|
||||
[0] = sym_word,
|
||||
},
|
||||
[61] = {
|
||||
[1] = sym_word,
|
||||
},
|
||||
}};
|
||||
|
||||
const t_alias_sequences_array *create_alias_sequences(void)
|
||||
{
|
||||
v->a[6][1] = anon_sym_AT;
|
||||
v->a[7][0] = anon_sym_AT;
|
||||
v->a[21][1] = sym_string_content;
|
||||
v->a[23][0] = anon_sym_AT;
|
||||
v->a[25][1] = anon_sym_AT;
|
||||
v->a[37][2] = sym_string_content;
|
||||
v->a[38][3] = sym_word;
|
||||
v->a[39][0] = sym_regex;
|
||||
v->a[42][1] = anon_sym_AT;
|
||||
v->a[50][0] = sym_word;
|
||||
v->a[61][1] = sym_word;
|
||||
return (&g_t_alias_sequences_array);
|
||||
}
|
||||
|
||||
/* EOF alias_sequences_0.c */
|
||||
|
|
@ -1,25 +0,0 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* 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);
|
||||
|
||||
#endif // ALIAS_SEQUENCES_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue