lexLeo
Loading...
Searching...
No Matches
lexer_ops.h
1// src/ports/lexer/include/lexer_ops.h
2
3#ifndef LEXLEO_LEXER_OPS_H
4#define LEXLEO_LEXER_OPS_H
5
6#include "lexer_types.h"
7
8struct lexleo_token_t;
9
10typedef struct lexer_ops_t {
11 lexer_next_rc_t (*next)(lexer_t *lx, struct lexleo_token_t *out);
13
14const lexer_ops_t *lexer_default_ops(void);
15
16#endif //LEXLEO_LEXER_OPS_H
Definition lexer_ops.h:10
Definition lexer_internal.h:8
Definition lexleo_token.h:67