123456789101112131415161718192021 |
- /* A packrat parser generated by PackCC 1.5.0 */
- #ifndef PCC_INCLUDED_SEQ_H
- #define PCC_INCLUDED_SEQ_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- typedef struct seq_context_tag seq_context_t;
- seq_context_t *seq_create(void *auxil);
- int seq_parse(seq_context_t *ctx, int *ret);
- void seq_destroy(seq_context_t *ctx);
- #ifdef __cplusplus
- }
- #endif
- #endif /* !PCC_INCLUDED_SEQ_H */
|