00001 /* utility.h 00002 * 00003 * This file is part of httpd. 00004 * 00005 * 02/17/1996 Michael Temari <Michael@TemWare.Com> 00006 * 07/07/1996 Initial Release Michael Temari <Michael@TemWare.Com> 00007 * 12/29/2002 Michael Temari <Michael@TemWare.Com> 00008 * 00009 */ 00010 00011 #define LWS(c) ((c == ' ') || (c == '\t') || (c == '\r') || (c == '\n')) 00012 00013 _PROTOTYPE(char *logdate, (time_t *t)); 00014 _PROTOTYPE(char *httpdate, (time_t *t)); 00015 _PROTOTYPE(time_t httptime, (char *p)); 00016 _PROTOTYPE(char *mimetype, (char *url)); 00017 _PROTOTYPE(char *decode64, (char *p)); 00018 _PROTOTYPE(int getparms, (char *p, char *parms[], int maxparms)); 00019 _PROTOTYPE(int mkurlaccess, (char *p));
1.4.6