Merge identical declarations

This commit is contained in:
Christian Göttsche 2020-10-05 12:27:27 +02:00 committed by cgzones
parent 49bb1b57f8
commit cdd3913647
1 changed files with 0 additions and 10 deletions

View File

@ -57,20 +57,10 @@ typedef struct RichString_ {
CharType chstr[RICHSTRING_MAXLEN+1];
} RichString;
#ifdef HAVE_LIBNCURSESW
void RichString_setAttrn(RichString* this, int attrs, int start, int finish);
int RichString_findChar(RichString* this, char c, int start);
#else /* HAVE_LIBNCURSESW */
void RichString_setAttrn(RichString* this, int attrs, int start, int finish);
int RichString_findChar(RichString* this, char c, int start);
#endif /* HAVE_LIBNCURSESW */
void RichString_prune(RichString* this);
void RichString_setAttr(RichString* this, int attrs);