lexLeo
Loading...
Searching...
No Matches
lexer.h
1// src/ports/lexer/include/lexer.h
2
3// port
4
5#ifndef LEXLEO_LEXER_H
6#define LEXLEO_LEXER_H
7
8#include "lexer_types.h"
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14struct lexleo_token_t;
15
16lexer_next_rc_t lexer_next(lexer_t *lx, struct lexleo_token_t *out);
17
18#ifdef __cplusplus
19}
20#endif
21
22#endif //LEXLEO_LEXER_H
Definition lexer_internal.h:8
Definition lexleo_token.h:67