Files
ldc/dmd2/html.h
2012-04-05 11:12:22 +04:00

51 lines
1.3 KiB
C

// Copyright (c) 1999-2009 by Digital Mars
// All Rights Reserved
// written by Walter Bright
// http://www.digitalmars.com
// License for redistribution is by either the Artistic License
// in artistic.txt, or the GNU General Public License in gpl.txt.
// See the included readme.txt for details.
#if MARS
struct OutBuffer;
#else
struct Outbuffer;
#endif
struct Html
{
const char *sourcename;
unsigned char *base; // pointer to start of buffer
unsigned char *end; // past end of buffer
unsigned char *p; // current character
unsigned linnum; // current line number
#if MARS
OutBuffer *dbuf; // code source buffer
#else
Outbuffer *dbuf; // code source buffer
#endif
int inCode; // !=0 if in code
Html(const char *sourcename, unsigned char *base, unsigned length);
void error(const char *format, ...);
#if MARS
void extractCode(OutBuffer *buf);
#else
void extractCode(Outbuffer *buf);
#endif
void skipTag();
void skipString();
unsigned char *skipWhite(unsigned char *q);
void scanComment();
int isCommentStart();
void scanCDATA();
int isCDATAStart();
int charEntity();
static int namedEntity(unsigned char *p, int length);
};