2 // Compiler implementation of the D programming language
3 // Copyright (c) 1999-2006 by Digital Mars
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.
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
);
34 unsigned char *skipWhite(unsigned char *q
);
40 static int namedEntity(unsigned char *p
, int length
);