apportate/src/headers.h

30 lines
502 B
C

#include <stdlib.h>
#include <stdio.h>
#include <fcntl.h>
#include <string.h>
#include <ctype.h>
#include <errno.h>
#include <unistd.h>
#include <regex.h>
#include <sys/socket.h>
#include <netdb.h>
#include <netinet/in.h>
#include <tls.h>
/* routines and variables used globally */
#include "support.h"
/* URI handling routines */
#include "uri.h"
/* generic TCP/IP networking functions */
#include "connect.h"
/* HTTP 1.0 handling */
#include "http.h"
/* Gopher handling */
#include "gopher.h"