From fa22b74c2e6528b4315909377f277ef193e19d11 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sat, 12 Nov 2016 17:20:15 +1100 Subject: Added basic word count feature --- c_fl_text_display.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'c_fl_text_display.cpp') diff --git a/c_fl_text_display.cpp b/c_fl_text_display.cpp index 94eb002..5104869 100644 --- a/c_fl_text_display.cpp +++ b/c_fl_text_display.cpp @@ -73,3 +73,13 @@ void fl_text_display_show_insert_pos(TEXTDISPLAY td) { reinterpret_cast(td)->show_insert_position(); } + +void fl_text_display_next_word(TEXTDISPLAY td) { + reinterpret_cast(td)->next_word(); +} + + +void fl_text_display_previous_word(TEXTDISPLAY td) { + reinterpret_cast(td)->previous_word(); +} + -- cgit