/* Author: Ram Samudrala (me@ram.org) * Version: O1.0 * Detail: * November 22, 1995. * * See the URL above for more information. */ #ifndef __CGI_COOKIES__ #define __CGI_COOKIES__ /******************************************************************/ /* Function declarations */ extern int start_setting_cookies(); extern int end_setting_cookies(); extern int set_cookie(char name[], char value[], char path[], char expires[], char url[]); extern int get_cookie(char name[], char value[]); extern int clear_cookie(char name[], char path[], char url[]); /******************************************************************/ #endif /* __CGI_COOKIES__ */