diff options
Diffstat (limited to 'include/proto.h')
-rw-r--r-- | include/proto.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/proto.h b/include/proto.h index c2cb7716..ed883028 100644 --- a/include/proto.h +++ b/include/proto.h @@ -278,13 +278,15 @@ int x_dict(); int use_dict(char *dict,char *database); /* convert */ +int gb_write(int fd, void *buf, size_t count); +int gb_read(int fd, void *buf, size_t count); +int utf8_write(int fd, void *buf, size_t count); +int utf8_read(int fd, void *buf, size_t count); +void set_converting_type(int which); unsigned char *gb2big(unsigned char *s, int plen); unsigned char *big2gb(unsigned char *s, int plen); /* io */ -int converting_write(int fd, void *buf, size_t count); -int converting_read(int fd, void *buf, size_t count); -void set_converting_type(int which); int getdata(int line, int col, char *prompt, char *buf, int len, int echo); int igetch(); int getdata_str(int line, int col, char *prompt, char *buf, int len, int echo, char *defaultstr); |