Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / dthelp / parser / pass1 / build / build.c
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: build.c /main/3 1995/11/08 10:00:11 rswiston $ */
24 /*
25               Copyright 1986 Tandem Computers Incorporated.
26 This product and information is proprietary of Tandem Computers Incorporated.
27                    Copyright (c) 1986, 1987, 1988, 1989 Hewlett-Packard Co.
28 */
29
30 /* Build.c contains the main procedure for program BUILD */
31
32 #include <string.h>
33 #include <malloc.h>
34 #if defined(MSDOS)
35 #include <process.h>
36 #endif
37 #include "context.h"
38 #define BUILDEF
39 #include "build.h"
40 #include "delim.h"
41 #include "entdef.h"
42
43 /* Main procedure */
44 void main(argc, argv)
45 int argc ;
46 char **argv ;
47 {
48 int m_prevcon ;
49
50 if (argc > 1)
51     {
52     if (strchr(argv[1], 'a')) m_malftrace = TRUE ;
53     if (strchr(argv[1], 'A')) m_malftrace = TRUE ;
54     if (strchr(argv[1], 'a')) m_malftrace = TRUE ;
55     if (strchr(argv[1], 'H')) m_heapchk = TRUE ;
56     if (strchr(argv[1], 'm')) standard = TRUE ;
57     if (strchr(argv[1], 'M')) standard = TRUE ;
58     if (strchr(argv[1], 's')) scantrace = TRUE ;
59     if (strchr(argv[1], 'S')) scantrace = TRUE ;
60     }
61 initialize() ;
62 while (TRUE)
63     {
64     m_token = scan() ;
65     m_prevcon = curcon ;
66     curcon = m_newcon(m_prevcon - 1, m_token - 1) ;
67     if (scantrace)
68     printf(
69     "m_prevcon=%d, m_token=%d, curcon=%d, scanval = %c (%d), line=%d\n",
70     m_prevcon, m_token, curcon, scanval, scanval, m_line) ;
71     #include "case.c"
72     if (m_token == ENDFILE) exit(FALSE) ;
73     }
74 }