1
0
mirror of https://github.com/irssi/irssi.git synced 2025-02-02 15:08:01 -05:00

Kill an unneeded declaration

This commit is contained in:
LemonBoy 2015-10-02 15:08:48 +02:00
parent c7646dc58d
commit 48ab298a67

View File

@ -8,8 +8,6 @@
#define is_big5_hi(hi) (0x81 <= (hi) && (hi) <= 0xFE)
#define is_big5(hi,lo) (is_big5_hi(hi) && is_big5_lo(lo))
int strlen_big5(const unsigned char *str);
/* Returns width for character (0-2). */
int mk_wcwidth(unichar c);