summaryrefslogtreecommitdiff
path: root/examples/dte/replace.h
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
commitdcacc00e3750300617ba6e16eb346713f91a783a (patch)
tree38e2d4fb5ed9d119711d4295c6eda4b014af73fd /examples/dte/replace.h
parent58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff)
downloadcrep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz
Remove testing data
Diffstat (limited to 'examples/dte/replace.h')
-rw-r--r--examples/dte/replace.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/examples/dte/replace.h b/examples/dte/replace.h
deleted file mode 100644
index 783a46f..0000000
--- a/examples/dte/replace.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef REPLACE_H
-#define REPLACE_H
-
-#include <stdbool.h>
-#include "util/macros.h"
-#include "view.h"
-
-typedef enum {
- REPLACE_CONFIRM = 1 << 0,
- REPLACE_GLOBAL = 1 << 1,
- REPLACE_IGNORE_CASE = 1 << 2,
- REPLACE_BASIC = 1 << 3,
- REPLACE_CANCEL = 1 << 4,
-} ReplaceFlags;
-
-bool reg_replace(View *view, const char *pattern, const char *format, ReplaceFlags flags) NONNULL_ARGS;
-
-#endif