diff options
author | Tatsuya Kinoshita <tats@vega.ocn.ne.jp> | 2011-05-04 07:41:45 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@vega.ocn.ne.jp> | 2011-05-04 07:41:45 +0000 |
commit | 5397d09e585a1938fb64bc9c5cd5daed1959eb90 (patch) | |
tree | cd2673d4ca9584c426f9291e54b7bbb508c11e76 /proto.h | |
parent | Adding upstream version 0.5.2 (diff) | |
download | w3m-5397d09e585a1938fb64bc9c5cd5daed1959eb90.tar.gz w3m-5397d09e585a1938fb64bc9c5cd5daed1959eb90.zip |
Adding upstream version 0.5.3upstream/0.5.3
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: proto.h,v 1.101 2006/04/07 13:21:12 inu Exp $ */ +/* $Id: proto.h,v 1.104 2010/07/25 09:55:05 htrb Exp $ */ /* * This file was automatically generated by version 1.7 of cextract. * Manual editing not recommended. @@ -165,6 +165,7 @@ extern ParsedURL *schemeToProxy(int scheme); extern void examineFile(char *path, URLFile *uf); extern char *acceptableEncoding(); extern int dir_exist(char *path); +extern int is_html_type(char *type); #ifdef USE_M17N extern char **get_symbol(wc_ces charset, int *width); extern char **set_symbol(int width); @@ -176,6 +177,9 @@ extern Str convertLine0(URLFile *uf, Str line, int mode); #define convertLine(uf,line,mode,charset,dcharset) convertLine0(uf,line,mode) #endif extern void push_symbol(Str str, char symbol, int width, int n); +#ifdef USE_UNICODE +extern void update_utf8_symbol(void); +#endif extern Buffer *loadFile(char *path); extern Buffer *loadGeneralFile(char *path, ParsedURL *current, char *referer, int flag, FormList *request); @@ -774,6 +778,8 @@ extern void wrapToggle(void); extern void saveBufferInfo(void); #endif +extern Str getLinkNumberStr(int correction); + extern void dispVer(void); #ifdef USE_INCLUDED_SRAND48 |