summaryrefslogtreecommitdiff
path: root/LiquidCrystal.h
diff options
context:
space:
mode:
Diffstat (limited to 'LiquidCrystal.h')
-rw-r--r--LiquidCrystal.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/LiquidCrystal.h b/LiquidCrystal.h
index dd28fc9..d995504 100644
--- a/LiquidCrystal.h
+++ b/LiquidCrystal.h
@@ -7,6 +7,7 @@
#include <stdint.h>
#include <stdbool.h>
+#include <unistd.h>
void liquid_crystal_init(bool data_length, bool two_line, bool many_dots);
@@ -26,4 +27,6 @@ void liquid_crystal_write_char(char chr);
void liquid_crystal_write_string(char *chr);
+void liquid_crystal_write_string_len(char *chr, size_t max_len);
+
#endif