File: http.h

package info (click to toggle)
netrik 1.16.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,288 kB
  • sloc: ansic: 6,657; sh: 994; makefile: 120
file content (20 lines) | stat: -rw-r--r-- 476 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
   netrik -- The ANTRIK Internet Viewer
   Copyright (C) Olaf D. Buddenhagen AKA antrik, et al (see AUTHORS)
   Published under the GNU GPL; see LICENSE for details.
*/
/*
 * http.h -- declarations for http.c
 *
 * (C) 2001 Patrice Neff
 *     2002 antrik
 */

#ifndef __HTTP_H
#define __HTTP_H

#include "load.h"    /* need "struct Resource" */

void http_init_load(struct Resource *res, const struct Item *form);    /* prepare http connection for reading data */

#endif