From 8129933ca51caf788e0cd7c5fdbcb43fdc64601d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Sun, 19 Jul 2015 13:55:50 +0200 Subject: text: move regex related functions to separate file Eventually this should probably be rewritten to use an iternal regex engine, currently it has unacceptable memory usage, it copies the whole text. --- text-motions.h | 1 + 1 file changed, 1 insertion(+) (limited to 'text-motions.h') diff --git a/text-motions.h b/text-motions.h index 0f99076..3c7c9c5 100644 --- a/text-motions.h +++ b/text-motions.h @@ -7,6 +7,7 @@ #include #include "text.h" +#include "text-regex.h" size_t text_begin(Text*, size_t pos); size_t text_end(Text*, size_t pos); -- cgit v1.2.3