26 lines
1.1 KiB
C
26 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* lexer.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/04/23 19:51:24 by maiboyer #+# #+# */
|
|
/* Updated: 2024/04/24 23:03:33 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef LEXER_H
|
|
#define LEXER_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
#ifndef TREE_SITTER_API_H_
|
|
typedef uint16_t t_state_id;
|
|
typedef uint16_t t_symbol;
|
|
typedef uint16_t t_field_id;
|
|
typedef struct s_language t_language;
|
|
#endif
|
|
|
|
#endif /* LEXER_H */
|