blob: 916d8fe2211e1619ef7a8cd88a5f747ae1640933 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* compiler.h - Header file for BPEG compiler.
*/
#ifndef COMPILER__H
#define COMPILER__H
#include <stdlib.h>
#include "types.h"
vm_op_t *bpeg_simplepattern(const char *str);
vm_op_t *bpeg_stringpattern(const char *str);
vm_op_t *bpeg_replacement(vm_op_t *pat, const char *replacement);
vm_op_t *bpeg_pattern(const char *str);
#endif
|