comparison dmd2/html.h @ 758:f04dde6e882c

Added initial D2 support, D2 frontend and changes to codegen to make things compile.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Tue, 11 Nov 2008 01:38:48 +0100
parents
children 638d16625da2
comparison
equal deleted inserted replaced
757:2c730d530c98 758:f04dde6e882c
1
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.
10
11 #ifndef DMD_HTML_H
12 #define DMD_HTML_H 1
13
14 struct OutBuffer;
15
16 struct Html
17 {
18 const char *sourcename;
19
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
26
27
28 Html(const char *sourcename, unsigned char *base, unsigned length);
29
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);
41 };
42
43 #endif