File: prayer_shared.h

package info (click to toggle)
prayer 1.3.4-dfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 6,416 kB
  • sloc: ansic: 43,089; makefile: 812; sh: 451; perl: 166
file content (47 lines) | stat: -rw-r--r-- 1,187 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/* $Cambridge: hermes/src/prayer/servers/prayer_shared.h,v 1.3 2008/09/16 09:59:57 dpc22 Exp $ */
/************************************************
 *    Prayer - a Webmail Interface              *
 ************************************************/

/* Copyright (c) University of Cambridge 2000 - 2008 */
/* See the file NOTICE for conditions of use and distribution. */

/* System header files needed by other headers */
#ifndef  PRAYER_FULL_HDRS
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/time.h>
#include <stdarg.h>
#include <time.h>
#include <ctype.h>
#include <string.h>
#include <strings.h>
#include <unistd.h>
#include <errno.h>
#include <sysexits.h>
#include <sys/wait.h>
#include <syslog.h>
#include <pwd.h>
#include <grp.h>
#include <assert.h>
#include <netdb.h>

extern int errno;               /* just in case */
#endif

#include "lib.h"
#include "common.h"
#include "config.h"
#include "user_agent.h"
#include "request.h"
#include "response.h"
#include "gzip.h"
#include "html_common.h"
#include "setproctitle.h"
#include "mymutex.h"
#include "log.h"
#include "utf8.h"
#include "dlopen_templates.h"