File: lib.h

package info (click to toggle)
prayer 1.3.5-dfsg1-8
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 6,596 kB
  • sloc: ansic: 43,163; makefile: 817; sh: 445; perl: 166
file content (52 lines) | stat: -rw-r--r-- 1,225 bytes parent folder | download | duplicates (6)
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
48
49
50
51
52
/* $Cambridge: hermes/src/prayer/lib/lib.h,v 1.4 2010/07/07 08:52:14 dpc22 Exp $ */

/************************************************
 *    Prayer - a Webmail Interface              *
 ************************************************/

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

#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>

#include "misc.h"
#include "pool.h"
#include "buffer.h"
#include "str.h"
#include "assoc.h"
#include "list.h"
#include "memblock.h"
#include "template_vals.h"
#include "template_structs.h"
#include "template_fns.h"
#include "mystring.h"
#include "ssl.h"
#include "iostream.h"
#include "ipaddr.h"
#include "process.h"
#include "os.h"
#include "mymutex.h"
#include "setproctitle.h"
#include "cdb.h"
#include "utf8.h"
#include "html.h"
#include "raven_wls_response.h"