/* HTMLentities.h
 * $Id$
 */

#include "SGMLstream.h"

typedef struct _entity_declaration{
  char* name;
  char value;
};

extern struct _entity_declaration HTML_entities[];

int
  HTML_expand_entity PARAMS((VOIDPTR entities,
			     CONST char* name,
			     char* val));
