summaryrefslogtreecommitdiffstats
path: root/RichString.h
diff options
context:
space:
mode:
authorHugo Musso Gualandi <hugo_musso_gualandi@hotmail.com>2020-09-12 18:25:25 -0300
committerHugo Musso Gualandi <hugo_musso_gualandi@hotmail.com>2020-09-12 19:20:44 -0300
commit9207401f9711ba026a70d7dd47347d7eab168b3f (patch)
tree959ae417880dda426e3b1bfea904edc6a90fac0c /RichString.h
parentcd55cfd6d263a89bbaf401481ea6bd6a5dd8f110 (diff)
Clean up some code duplication in the header files
PR htop-dev/htop#70 got rid of the infrastructure for generating header files, but it left behind some code duplication. Some of cases are things that belong in the header file and don't need to be repeated in the C file. Other cases are things that belong in the C file and don't need to be in the header file. In this commit I tried to fix all of these that I could find. When given a choice I preferred keeping things out of the header file, unless they were being used by someone else.
Diffstat (limited to 'RichString.h')
-rw-r--r--RichString.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/RichString.h b/RichString.h
index 5431e92a..e6fb4c32 100644
--- a/RichString.h
+++ b/RichString.h
@@ -7,7 +7,6 @@ Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
-#define RICHSTRING_MAXLEN 350
#include "config.h"
#include <ctype.h>
@@ -50,16 +49,14 @@ in the source distribution for its full text.
#define CharType chtype
#endif
+#define RICHSTRING_MAXLEN 350
+
typedef struct RichString_ {
int chlen;
CharType* chptr;
CharType chstr[RICHSTRING_MAXLEN+1];
} RichString;
-#define charBytes(n) (sizeof(CharType) * (n))
-
-#define RichString_setLen(this, len) do{ if(len < RICHSTRING_MAXLEN && this->chlen < RICHSTRING_MAXLEN) { RichString_setChar(this,len,0); this->chlen=len; } else RichString_extendLen(this,len); }while(0)
-
#ifdef HAVE_LIBNCURSESW
void RichString_setAttrn(RichString* this, int attrs, int start, int finish);

© 2014-2024 Faster IT GmbH | imprint | privacy policy