Rev | Line | |
---|
[9] | 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.