/***************************************************************************
* Shadow Wars: the Revenge of Kalos *
---------------------------------------------------------------------------
* You are allowd to change and modify this code, you may NOT take out *
* the helpfile 'CREATORS', and you must leave in the Greeting, *
* Shadow Wars: the Revenge of Kalos created by Xkilla and Sillviant *
* (c)2001 Xkilla 'Ryan Waliany' (ryan@scv.net) *
* Sillviant 'Matt Burnett' (sillviant@charter.net) *
---------------------------------------------------------------------------
* Changes snippet by: Xkilla. This is a snippet, you may modify it, but *
* you must leave in Xkilla's credit. *
***************************************************************************/
typedef struct newquotes_data NEWQUOTE_DATA;
void load_quotes args( (void) );
void save_quotes args( (void) );
void delete_quote args( (int num) );
struct newquotes_data
{
char * quote;
char * coder;
char * date;
time_t mudtime;
};
extern struct newquotes_data * quotes_table;