lexLeo
Loading...
Searching...
No Matches
lexer_legacy_internal.h
1// src/ports/lexer/src/internal/lexer_internal.h
2
3#ifndef LEXER_INTERNAL_H
4#define LEXER_INTERNAL_H
5
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10// ----------------------------------------------------------------------------
11// HANDLE
12// ----------------------------------------------------------------------------
13
14struct lexer_t {
15 lexer_vtbl_t vtbl;
16 void *backend;
17 const osal_mem_ops_t *mem;
18};
19
20#ifdef __cplusplus
21}
22#endif
23
24#endif //_LEXER_INTERNAL_H
Definition lexer_internal.h:8
Definition lexer_ctx.h:25
Definition osal_mem_ops.h:12