minishell/parser/includes/api.h
2024-06-30 20:04:00 +02:00

19 lines
516 B
C

#include "../src/api.h"
#include "../src/array.h"
#include "../src/language.h"
#include "../src/length.h"
#include "../src/lexer.h"
#include "../src/parser.h"
#include "../src/stack.h"
#include "../src/subtree.h"
#include "../src/tree.h"
#include "me/mem/mem.h"
#include <stdint.h>
typedef TSNode t_parse_node;
typedef TSSymbol t_symbol;
typedef TSParser t_first_parser;
typedef TSTree t_first_tree;
typedef TSLanguage t_language;
TSFieldId ts_node_field_id_for_child(TSNode self, uint32_t child_index);