3e1db26a5a
Removing elvis, importing nvi, ctags, updating libedit. Change-Id: I881eb04d2dc64cf112facd992de1114e1a59107f
28 lines
773 B
C
28 lines
773 B
C
/* $NetBSD: conv.h,v 1.4 2009/04/19 02:28:19 tnozaki Exp $ */
|
|
|
|
#define KEY_COL(sp, ch) \
|
|
(INTISWIDE(ch) ? \
|
|
(CHAR_WIDTH(sp, ch) >= 0) ? \
|
|
(size_t)CHAR_WIDTH(sp, ch) : 1 /* extra space */ \
|
|
: KEY_LEN(sp,ch))
|
|
|
|
struct _conv_win {
|
|
void *bp1;
|
|
size_t blen1;
|
|
};
|
|
|
|
typedef int (*char2wchar_t)
|
|
(SCR *, const char *, ssize_t, struct _conv_win *, size_t *, const CHAR_T **);
|
|
typedef int (*wchar2char_t)
|
|
(SCR *, const CHAR_T *, ssize_t, struct _conv_win *, size_t *, const char **);
|
|
|
|
struct _conv {
|
|
char2wchar_t sys2int;
|
|
wchar2char_t int2sys;
|
|
char2wchar_t file2int;
|
|
wchar2char_t int2file;
|
|
char2wchar_t input2int;
|
|
wchar2char_t int2disp;
|
|
};
|
|
void conv_init __P((SCR *, SCR *));
|
|
int conv_enc __P((SCR *, int, const char *));
|