summaryrefslogtreecommitdiff
path: root/find.c
diff options
context:
space:
mode:
Diffstat (limited to 'find.c')
-rw-r--r--find.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/find.c b/find.c
index 2abcd42..34bc354 100644
--- a/find.c
+++ b/find.c
@@ -4,7 +4,10 @@
#include "pcre-inc.h"
#define FIND_MAX_GROUPS 50
-
+struct FindResult {
+ BufferPos start;
+ BufferPos end;
+};
static u32 find_compilation_flags(Ted *ted) {
return (ted->find_case_sensitive ? 0 : PCRE2_CASELESS)