Mercurial > pidgin.yaz
comparison src/html.c @ 2417:5473c8c5378d
[gaim-migrate @ 2430]
boo-yah!
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Wed, 03 Oct 2001 09:48:33 +0000 |
parents | 2927c2c26fe6 |
children | 8229710b343b |
comparison
equal
deleted
inserted
replaced
2416:61b816a7b467 | 2417:5473c8c5378d |
---|---|
33 #include <netdb.h> | 33 #include <netdb.h> |
34 #include <netinet/in.h> | 34 #include <netinet/in.h> |
35 #include <fcntl.h> | 35 #include <fcntl.h> |
36 #include <errno.h> | 36 #include <errno.h> |
37 #include "proxy.h" | 37 #include "proxy.h" |
38 | |
39 struct g_url { | |
40 char address[255]; | |
41 int port; | |
42 char page[255]; | |
43 }; | |
38 | 44 |
39 gchar *strip_html(gchar *text) | 45 gchar *strip_html(gchar *text) |
40 { | 46 { |
41 int i, j, k; | 47 int i, j, k; |
42 int visible = 1; | 48 int visible = 1; |
66 } | 72 } |
67 text2[j] = '\0'; | 73 text2[j] = '\0'; |
68 return text2; | 74 return text2; |
69 } | 75 } |
70 | 76 |
71 struct g_url parse_url(char *url) | 77 static struct g_url parse_url(char *url) |
72 { | 78 { |
73 struct g_url test; | 79 struct g_url test; |
74 char scan_info[255]; | 80 char scan_info[255]; |
75 char port[5]; | 81 char port[5]; |
76 int f; | 82 int f; |