source: trunk/minix/commands/httpd/utility.h@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 613 bytes
Line 
1/* utility.h
2 *
3 * This file is part of httpd.
4 *
5 * 02/17/1996 Michael Temari <Michael@TemWare.Com>
6 * 07/07/1996 Initial Release Michael Temari <Michael@TemWare.Com>
7 * 12/29/2002 Michael Temari <Michael@TemWare.Com>
8 *
9 */
10
11#define LWS(c) ((c == ' ') || (c == '\t') || (c == '\r') || (c == '\n'))
12
13_PROTOTYPE(char *logdate, (time_t *t));
14_PROTOTYPE(char *httpdate, (time_t *t));
15_PROTOTYPE(time_t httptime, (char *p));
16_PROTOTYPE(char *mimetype, (char *url));
17_PROTOTYPE(char *decode64, (char *p));
18_PROTOTYPE(int getparms, (char *p, char *parms[], int maxparms));
19_PROTOTYPE(int mkurlaccess, (char *p));
Note: See TracBrowser for help on using the repository browser.