aboutsummaryrefslogtreecommitdiff
path: root/compiler.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2020-12-30 19:42:47 -0800
committerBruce Hill <bruce@bruce-hill.com>2020-12-30 19:42:47 -0800
commitff2ef9504159665c30b16b398f1e755665353bc3 (patch)
tree5957bff54c7f1b7619dd044cd55b22fe83f80d09 /compiler.h
parentbc2ddc0408e47cbc12b0f7d0c0abae943fc74b83 (diff)
Fully purging "bpeg" from the source
Diffstat (limited to 'compiler.h')
-rw-r--r--compiler.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/compiler.h b/compiler.h
index f7e8b43..bae222f 100644
--- a/compiler.h
+++ b/compiler.h
@@ -1,5 +1,5 @@
/*
- * compiler.h - Header file for BPEG compiler.
+ * compiler.h - Header file for BP compiler.
*/
#ifndef COMPILER__H
#define COMPILER__H
@@ -8,13 +8,13 @@
#include "types.h"
__attribute__((nonnull(1,2)))
-vm_op_t *bpeg_simplepattern(file_t *f, const char *str);
+vm_op_t *bp_simplepattern(file_t *f, const char *str);
__attribute__((nonnull(1,2)))
-vm_op_t *bpeg_stringpattern(file_t *f, const char *str);
+vm_op_t *bp_stringpattern(file_t *f, const char *str);
__attribute__((nonnull(1,2)))
-vm_op_t *bpeg_replacement(file_t *f, vm_op_t *pat, const char *replacement);
+vm_op_t *bp_replacement(file_t *f, vm_op_t *pat, const char *replacement);
__attribute__((nonnull(1,2)))
-vm_op_t *bpeg_pattern(file_t *f, const char *str);
+vm_op_t *bp_pattern(file_t *f, const char *str);
#endif
// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1