aboutsummaryrefslogtreecommitdiff
path: root/compiler.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2021-01-15 19:32:37 -0800
committerBruce Hill <bruce@bruce-hill.com>2021-01-15 19:32:37 -0800
commit44573fc224796f712254d7ff7fdc0a87aeb6a84c (patch)
treec19bd97e082f54d5a73846fb5b8b6fcb295c74dc /compiler.h
parent270509af3bb0546abd3265d6b19cb12f975d14a7 (diff)
Rename compiler -> pattern
Diffstat (limited to 'compiler.h')
-rw-r--r--compiler.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/compiler.h b/compiler.h
deleted file mode 100644
index 3038d09..0000000
--- a/compiler.h
+++ /dev/null
@@ -1,24 +0,0 @@
-//
-// compiler.h - Header file for BP compiler.
-//
-#ifndef COMPILER__H
-#define COMPILER__H
-
-#include "files.h"
-#include "types.h"
-
-__attribute__((nonnull))
-pat_t *new_pat(file_t *f, const char *start, enum pattype_e type);
-__attribute__((nonnull(1,2)))
-pat_t *bp_simplepattern(file_t *f, const char *str);
-__attribute__((nonnull(1,2)))
-pat_t *bp_stringpattern(file_t *f, const char *str);
-__attribute__((nonnull(1,2)))
-pat_t *bp_replacement(file_t *f, pat_t *replacepat, const char *replacement);
-__attribute__((nonnull))
-pat_t *bp_pattern(file_t *f, const char *str);
-__attribute__((nonnull))
-def_t *bp_definition(file_t *f, const char *str);
-
-#endif
-// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1