comparison dmd/html.h @ 1:c53b6e3fe49a trunk

[svn r5] Initial commit. Most things are very rough.
author lindquist
date Sat, 01 Sep 2007 21:43:27 +0200
parents
children 229e02867307
comparison
equal deleted inserted replaced
0:a9e71648e74d 1:c53b6e3fe49a
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