* WIP * Compiling! * moved some more headers * removed src/point.h * Update * fixed some stuff
12 lines
261 B
C
12 lines
261 B
C
#ifndef TREE_SITTER_PARSER_H_
|
|
#define TREE_SITTER_PARSER_H_
|
|
|
|
#include "../parse_types.h"
|
|
#include "parser/lexer.h"
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024
|
|
|
|
#endif // TREE_SITTER_PARSER_H_
|