diff options
author | pommicket <pommicket@gmail.com> | 2023-08-05 17:44:57 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-08-05 17:44:57 -0400 |
commit | 8ef478f460a55e83efa7351021e458c87e21de17 (patch) | |
tree | 19dd8c42170933cc38505e99d937137c212d8f24 /find.c | |
parent | da966bf4cc547c784c1631451eb2febf5cf75b13 (diff) |
more internalization
Diffstat (limited to 'find.c')
-rw-r--r-- | find.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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) |