comparison src/html.c @ 5872:059d95c67cda

[gaim-migrate @ 6304] The legendary Header File Cleanup! Files now only include what they need. This should reduce the number of files that must recompile when a header file changes. It's a lot nicer. Trust me on it. I also added a couple new header files. I hope I didn't break TOO much! committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sat, 14 Jun 2003 23:21:02 +0000
parents 46d7ad0dfa26
children 94ad4d45346a
comparison
equal deleted inserted replaced
5871:508adf90fbb9 5872:059d95c67cda
17 * You should have received a copy of the GNU General Public License 17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software 18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 * 20 *
21 */ 21 */
22 22 #include "internal.h"
23 #ifdef HAVE_CONFIG_H 23
24 #include <config.h> 24 #include "debug.h"
25 #endif 25 #include "proxy.h"
26 #include <string.h> 26
27 #include <stdio.h>
28 #include <stdlib.h>
29
30 #ifndef _WIN32
31 #include <sys/time.h>
32 #include <unistd.h>
33 #include <sys/socket.h>
34 #include <netdb.h>
35 #include <netinet/in.h>
36 #endif
37
38 #include <sys/types.h>
39 #include <fcntl.h>
40 #include <errno.h>
41 #include "gaim.h" 27 #include "gaim.h"
42 #include "proxy.h"
43
44 #ifdef _WIN32
45 #include "win32dep.h"
46 #endif
47 28
48 gchar *strip_html(const gchar *text) 29 gchar *strip_html(const gchar *text)
49 { 30 {
50 int i, j, k; 31 int i, j, k;
51 int visible = 1; 32 int visible = 1;