summaryrefslogtreecommitdiff
path: root/web/funnelAC/sources/analyse.h
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /web/funnelAC/sources/analyse.h
Initial commit
Diffstat (limited to 'web/funnelAC/sources/analyse.h')
-rw-r--r--web/funnelAC/sources/analyse.h61
1 files changed, 61 insertions, 0 deletions
diff --git a/web/funnelAC/sources/analyse.h b/web/funnelAC/sources/analyse.h
new file mode 100644
index 0000000000..3c2826b810
--- /dev/null
+++ b/web/funnelAC/sources/analyse.h
@@ -0,0 +1,61 @@
+/*##############################################################################
+
+FUNNNELWEB COPYRIGHT
+====================
+FunnelWeb is a literate-programming macro preprocessor.
+
+Copyright (C) 1992 Ross N. Williams.
+
+ Ross N. Williams
+ ross@spam.adelaide.edu.au
+ 16 Lerwick Avenue, Hazelwood Park 5066, Australia.
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of Version 2 of the GNU General Public License as
+published by the Free Software Foundation.
+
+This program is distributed WITHOUT ANY WARRANTY; without even the implied
+warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+See Version 2 of the GNU General Public License for more details.
+
+You should have received a copy of Version 2 of the GNU General Public
+License along with this program. If not, you can FTP the license from
+prep.ai.mit.edu/pub/gnu/COPYING-2 or write to the Free Software
+Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+Section 2a of the license requires that all changes to this file be
+recorded prominently in this file. Please record all changes here.
+
+Programmers:
+ RNW Ross N. Williams ross@spam.adelaide.edu.au
+
+Changes:
+ 07-May-1992 RNW Program prepared for release under GNU GPL V2.
+
+##############################################################################*/
+
+
+/******************************************************************************/
+/* ANALYSE.H */
+/******************************************************************************/
+/* */
+/* This package exports a single function called analyse() that should be */
+/* invoked just after the parser has finished. The scanner and parser */
+/* serve only to construct a structured representation of the input file in */
+/* memory; they do not critique it beyond syntax. In contrast, analyse() */
+/* analyses the representation, checking it for "semantic" errors. Any */
+/* problems that are found are sent to the lister package with appropriate */
+/* positioning information so that the messages appear at exactly the right */
+/* spot in the listing. */
+/* */
+/******************************************************************************/
+
+#include "style.h"
+
+/******************************************************************************/
+
+EXPORT void analyse P_((void));
+
+/******************************************************************************/
+/* End of ANALYSE.H */
+/******************************************************************************/