From 08ac22ddb9e848123934dad215c58cb03e7ad094 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Thu, 14 Jan 2021 09:59:11 +0100 Subject: RichString: refactor writing limited amount of columns Closes: #468 --- RichString.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'RichString.h') diff --git a/RichString.h b/RichString.h index 73e78204..7464fff1 100644 --- a/RichString.h +++ b/RichString.h @@ -52,10 +52,15 @@ void RichString_setAttr(RichString* this, int attrs); void RichString_appendChr(RichString* this, int attrs, char c, int count); +/* All appending and writing functions return the number of written characters (not columns). */ + int RichString_appendWide(RichString* this, int attrs, const char* data); int RichString_appendnWide(RichString* this, int attrs, const char* data, int len); +/* columns takes the maximum number of columns to write and contains on return the number of columns written. */ +int RichString_appendnWideColumns(RichString* this, int attrs, const char* data, int len, int* columns); + int RichString_writeWide(RichString* this, int attrs, const char* data); int RichString_appendAscii(RichString* this, int attrs, const char* data); -- cgit v1.2.3