Allow returning something of type void in a function that returns void
[delight/core.git] / dmd2 / html.h
blob0a9be7db9c24b3a87df13176df1e1afeaab7e7ea
2 // Compiler implementation of the D programming language
3 // Copyright (c) 1999-2006 by Digital Mars
4 // All Rights Reserved
5 // written by Walter Bright
6 // http://www.digitalmars.com
7 // License for redistribution is by either the Artistic License
8 // in artistic.txt, or the GNU General Public License in gnu.txt.
9 // See the included readme.txt for details.
11 #ifndef DMD_HTML_H
12 #define DMD_HTML_H 1
14 struct OutBuffer;
16 struct Html
18 const char *sourcename;
20 unsigned char *base; // pointer to start of buffer
21 unsigned char *end; // past end of buffer
22 unsigned char *p; // current character
23 unsigned linnum; // current line number
24 OutBuffer *dbuf; // code source buffer
25 int inCode; // !=0 if in code
28 Html(const char *sourcename, unsigned char *base, unsigned length);
30 void error(const char *format, ...);
31 void extractCode(OutBuffer *buf);
32 void skipTag();
33 void skipString();
34 unsigned char *skipWhite(unsigned char *q);
35 void scanComment();
36 int isCommentStart();
37 void scanCDATA();
38 int isCDATAStart();
39 int charEntity();
40 static int namedEntity(unsigned char *p, int length);
43 #endif