diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2012-10-20 10:44:59 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2012-10-20 10:44:59 +0100 |
commit | 3cd37d784147808b2d93218b7eca3413a124b1b6 (patch) | |
tree | 8b951b4d1cb9fec7be7478d5f3ed3d1cb9dd37c2 /protocols/yahoo/yahoo_httplib.c | |
parent | 509cf60140e5d757c79558a7b39145fe3c0cb2b5 (diff) |
Cleaning up some more Yahoo! symbols.
Diffstat (limited to 'protocols/yahoo/yahoo_httplib.c')
-rw-r--r-- | protocols/yahoo/yahoo_httplib.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/protocols/yahoo/yahoo_httplib.c b/protocols/yahoo/yahoo_httplib.c index 6bb8923d..fd63d507 100644 --- a/protocols/yahoo/yahoo_httplib.c +++ b/protocols/yahoo/yahoo_httplib.c @@ -61,6 +61,7 @@ extern struct yahoo_callbacks *yc; extern enum yahoo_log_level log_level; +#if 0 int yahoo_tcp_readline(char *ptr, int maxlen, void *fd) { int n, rc; @@ -92,6 +93,7 @@ int yahoo_tcp_readline(char *ptr, int maxlen, void *fd) *ptr = 0; return (n); } +#endif static int url_to_host_port_path(const char *url, char *host, int *port, char *path, int *ssl) @@ -182,6 +184,7 @@ char *yahoo_urlencode(const char *instr) return (str); } +#if 0 char *yahoo_urldecode(const char *instr) { int ipos = 0, bpos = 0; @@ -278,6 +281,7 @@ char *yahoo_xmldecode(const char *instr) return (str); } +#endif typedef void (*http_connected) (int id, void *fd, int error); |