123456789101112131415161718192021 |
- /* A packrat parser generated by PackCC 1.5.0 */
- #ifndef PCC_INCLUDED_PASCAL_H
- #define PCC_INCLUDED_PASCAL_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- typedef struct pascal_context_tag pascal_context_t;
- pascal_context_t *pascal_create(void *auxil);
- int pascal_parse(pascal_context_t *ctx, int *ret);
- void pascal_destroy(pascal_context_t *ctx);
- #ifdef __cplusplus
- }
- #endif
- #endif /* !PCC_INCLUDED_PASCAL_H */
|