/* HTMLwriter.h -- HTML output of WWW nodes
 * $Id: SGMLmain.c,v 1.3 93/01/06 18:40:27 connolly Exp Locker: connolly $
 */

#ifndef HTMLwriter_h
#define HTMLwriter_h

#include "HMDoc.h"

extern HMDoc_Class HTMLwriter;


int
  SGML_replen PARAMS((CONST char* data, CONST char* specials));
/*
 * compute the length of data,
 * specials are replaced by character references.
 */

char*
  SGML_repcpy PARAMS((char* markup, CONST char* data, CONST char* specials));
/*
 * copy data to markup, replacing
 * specials by numeric character references.
 */

#endif
