diff options
author | LemonBoy <thatlemon@gmail.com> | 2015-10-02 15:08:48 +0200 |
---|---|---|
committer | LemonBoy <thatlemon@gmail.com> | 2015-10-02 15:08:48 +0200 |
commit | 48ab298a67151e6fce33c1d7b34f4f83796b8d9a (patch) | |
tree | d67d5dcb7e66a69bb78f8b6dcaa726788f12c487 | |
parent | c7646dc58d1e70abc8d2981e08baa83e459affdb (diff) | |
download | irssi-48ab298a67151e6fce33c1d7b34f4f83796b8d9a.zip |
Kill an unneeded declaration
-rw-r--r-- | src/fe-common/core/utf8.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/fe-common/core/utf8.h b/src/fe-common/core/utf8.h index 70b44d7e..3c15dc7d 100644 --- a/src/fe-common/core/utf8.h +++ b/src/fe-common/core/utf8.h @@ -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); |