47 lines
1.5 KiB
C
47 lines
1.5 KiB
C
/*
|
|
* CDE - Common Desktop Environment
|
|
*
|
|
* Copyright (c) 1993-2012, The Open Group. All rights reserved.
|
|
*
|
|
* These libraries and programs are free software; you can
|
|
* redistribute them and/or modify them under the terms of the GNU
|
|
* Lesser General Public License as published by the Free Software
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* These libraries and programs are distributed in the hope that
|
|
* they will be useful, but WITHOUT ANY WARRANTY; without even the
|
|
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
* PURPOSE. See the GNU Lesser General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with these librararies and programs; if not, write
|
|
* to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
|
|
* Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
/* $XConsortium: lineout.h /main/3 1996/06/19 17:15:59 drk $ */
|
|
/* lineout.h */
|
|
|
|
/* Output codes used by sgmls. */
|
|
|
|
#define DATA_CODE '-'
|
|
#define START_CODE '('
|
|
#define END_CODE ')'
|
|
#define ATTRIBUTE_CODE 'A'
|
|
#define DATA_ATTRIBUTE_CODE 'D'
|
|
#define REFERENCE_ENTITY_CODE '&'
|
|
#define DEFINE_NOTATION_CODE 'N'
|
|
#define DEFINE_EXTERNAL_ENTITY_CODE 'E'
|
|
#define DEFINE_INTERNAL_ENTITY_CODE 'I'
|
|
#define PI_CODE '?'
|
|
#define DEFINE_SUBDOC_ENTITY_CODE 'S'
|
|
#define START_SUBDOC_CODE '{'
|
|
#define END_SUBDOC_CODE '}'
|
|
#define LOCATION_CODE 'L'
|
|
#define APPINFO_CODE '#'
|
|
#define PUBID_CODE 'p'
|
|
#define SYSID_CODE 's'
|
|
#define FILE_CODE 'f'
|
|
#define CONFORMING_CODE 'C'
|