summaryrefslogtreecommitdiff
path: root/include/text.h
diff options
context:
space:
mode:
authorjussi2024-01-28 18:29:06 +0200
committerjussi2024-01-28 18:29:06 +0200
commit143453af9ea9be82b2d58d665bed62abb716e21f (patch)
tree53ead99a8db6da542c868f48fb3115a3da0d5df6 /include/text.h
parent71cc89c3033365746e5dcdb933c460c8e0da7fb0 (diff)
downloadreilua-enhanced-143453af9ea9be82b2d58d665bed62abb716e21f.tar.gz
reilua-enhanced-143453af9ea9be82b2d58d665bed62abb716e21f.tar.bz2
reilua-enhanced-143453af9ea9be82b2d58d665bed62abb716e21f.zip
TextInsert and TextSplit.
Diffstat (limited to 'include/text.h')
-rw-r--r--include/text.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/text.h b/include/text.h
index bbfe1ba..ff516d2 100644
--- a/include/text.h
+++ b/include/text.h
@@ -53,3 +53,6 @@ int ltextGetCodepoint( lua_State *L );
int ltextGetCodepointNext( lua_State *L );
int ltextGetCodepointPrevious( lua_State *L );
int ltextCodepointToUTF8( lua_State *L );
+/* Text strings management functions (no UTF-8 strings, only byte chars) */
+int ltextTextInsert( lua_State *L );
+int ltextTextSplit( lua_State *L );