mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +02:00
Move utf8.{h,c} from fe-common/core to core.
This commit is contained in:
parent
2ba4b9d26a
commit
5538578820
7 changed files with 8 additions and 7 deletions
|
|
@ -1,17 +0,0 @@
|
|||
#ifndef __UTF8_H
|
||||
#define __UTF8_H
|
||||
|
||||
/* XXX I didn't check the encoding range of big5+. This is standard big5. */
|
||||
#define is_big5_los(lo) (0x40 <= (lo) && (lo) <= 0x7E) /* standard */
|
||||
#define is_big5_lox(lo) (0x80 <= (lo) && (lo) <= 0xFE) /* extended */
|
||||
#define is_big5_lo(lo) ((is_big5_los(lo) || is_big5_lox(lo)))
|
||||
#define is_big5_hi(hi) (0x81 <= (hi) && (hi) <= 0xFE)
|
||||
#define is_big5(hi,lo) (is_big5_hi(hi) && is_big5_lo(lo))
|
||||
|
||||
/* Returns width for character (0-2). */
|
||||
int mk_wcwidth(unichar c);
|
||||
|
||||
#define unichar_isprint(c) (((c) & ~0x80) >= 32)
|
||||
#define is_utf8_leading(c) (((c) & 0xc0) != 0x80)
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue