comparison dmd/entity.c @ 1103:b30fe7e1dbb9

- Updated to DMD frontend 1.041. - Removed dmd/inifile.c , it's not under a free license, replaced with libconfig based config file.
author Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
date Thu, 12 Mar 2009 20:37:27 +0100
parents c53b6e3fe49a
children
comparison
equal deleted inserted replaced
1102:ae950bd712d3 1103:b30fe7e1dbb9
1 1
2 // Copyright (c) 1999-2006 by Digital Mars 2 // Copyright (c) 1999-2009 by Digital Mars
3 // All Rights Reserved 3 // All Rights Reserved
4 // written by Walter Bright 4 // written by Walter Bright
5 // http://www.digitalmars.com 5 // http://www.digitalmars.com
6 // License for redistribution is by either the Artistic License 6 // License for redistribution is by either the Artistic License
7 // in artistic.txt, or the GNU General Public License in gnu.txt. 7 // in artistic.txt, or the GNU General Public License in gnu.txt.
17 * http://www.w3.org/TR/1999/REC-html401-19991224/sgml/entities.html 17 * http://www.w3.org/TR/1999/REC-html401-19991224/sgml/entities.html
18 */ 18 */
19 19
20 struct NameId 20 struct NameId
21 { 21 {
22 char *name; 22 const char *name;
23 unsigned short value; 23 unsigned short value;
24 }; 24 };
25 25
26 #if IN_GCC 26 #if IN_GCC
27 static NameId namesA[]={ 27 static NameId namesA[]={