From bb5fd6e44e480f571bcb713788cc50eea44095e5 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Mon, 20 Feb 2012 01:32:18 -0500 Subject: snapshot of project "lynx", label v2-8-8dev_10b --- WWW/Library/Implementation/SGML.h | 286 -------------------------------------- 1 file changed, 286 deletions(-) delete mode 100644 WWW/Library/Implementation/SGML.h (limited to 'WWW/Library/Implementation/SGML.h') diff --git a/WWW/Library/Implementation/SGML.h b/WWW/Library/Implementation/SGML.h deleted file mode 100644 index 9fccdda2..00000000 --- a/WWW/Library/Implementation/SGML.h +++ /dev/null @@ -1,286 +0,0 @@ -/* - * $LynxId: SGML.h,v 1.46 2012/02/10 18:32:26 tom Exp $ - * SGML parse and stream definition for libwww - * SGML AND STRUCTURED STREAMS - * - * The SGML parser is a state machine. It is called for every character - * of the input stream. The DTD data structure contains pointers - * to functions which are called to implement the actual effect of the - * text read. When these functions are called, the attribute structures pointed to by the - * DTD are valid, and the function is passed a pointer to the current tag structure, and an - * "element stack" which represents the state of nesting within SGML elements. - * - * The following aspects are from Dan Connolly's suggestions: Binary search, - * Structured object scheme basically, SGML content enum type. - * - * (c) Copyright CERN 1991 - See Copyright.html - * - */ -#ifndef SGML_H -#define SGML_H - -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif -/* - * - * SGML content types - * - */ typedef enum { - SGML_EMPTY, /* No content. */ - SGML_LITTERAL, /* Literal character data. Recognize exact close tag only. - Old www server compatibility only! Not SGML */ - SGML_CDATA, /* Character data. Recognize