aboutsummaryrefslogtreecommitdiff
path: root/text-motions.h
diff options
context:
space:
mode:
Diffstat (limited to 'text-motions.h')
-rw-r--r--text-motions.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/text-motions.h b/text-motions.h
index aa87170..b99815d 100644
--- a/text-motions.h
+++ b/text-motions.h
@@ -65,4 +65,7 @@ size_t text_section_prev(Text*, size_t pos);
/* search coresponding '(', ')', '{', '}', '[', ']', '>', '<', '"', ''' */
size_t text_bracket_match(Text*, size_t pos);
+size_t text_search_forward(Text *txt, size_t pos, Regex *regex);
+size_t text_search_backward(Text *txt, size_t pos, Regex *regex);
+
#endif