| 1 | /** |
| 2 | * Integration wrapper for using the re2c/lemon parser with Netdata |
| 3 | */ |
| 4 | |
| 5 | #include "../eval-internal.h" |
| 6 | #include "parser_internal.h" |
| 7 | |
| 8 | // This file exists to allow the integration of the re2c/lemon parser |
| 9 | // with Netdata's build system. The actual implementation is in lexer.c |
| 10 | // which is generated from lexer.re. |
| 11 | |
| 12 | // We're just re-exporting the interface here, so the functions can be |
| 13 | // properly found by the linker. |
| 14 | |
| 15 | // See lexer.c and parser.c for the real implementations. |