/* ***************************************************************************** * * $RCSfile: getmessage.h,v $ * $Date: 1998/01/28 22:03:01 $ * $Source: /home/richard/Xml/RCS/getmessage.h,v $ * $Revision: 1.1 $ * $Author: richard $ * ***************************************************************************** * * Copyright 1998, Brown University and Richard Goerwitz * ***************************************************************************** */ #ifndef GETMESSAGE_H_INCLUDED #define GETMESSAGE_H_INCLUDED typedef struct message_catalog message_catalog; #include "hashutil.h" struct message_catalog { char *message_filename; struct rg_htable *htable; }; extern char *getmessage (message_catalog *, char *); extern message_catalog *create_message_catalog (char *); extern void free_message_catalog (message_catalog *); #endif /* GETMESSAGE_H_INCLUDED */