Merge branch 'linux1'
[oweals/cde.git] / cde / programs / dthelp / parser / pass2 / util / triepdmp.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: triepdmp.c /main/3 1995/11/08 11:08:46 rswiston $ */
24 /*
25                    Copyright 1986, 1987, 1988, 1989 Hewlett-Packard Co.
26 */
27
28 #include <stdio.h>
29 #include "basic.h"
30 #include "trie.h"
31
32 void countdown(
33 #if defined(M_PROTO)
34   M_TRIE *parent, int *count
35 #endif
36   ) ;
37
38 void dumpnode(
39 #if defined(M_PROTO)
40   LOGICAL *first, FILE *file, M_TRIE *trieptr, int *count,
41     void (*proc)(FILE *file, void *value)
42 #endif
43   ) ;
44
45 void dumpptrie(
46 #if defined(M_PROTO)
47   M_TRIE *intname, char *extname, FILE *file, char *externdef, char *defdef,
48   void (*proc)(FILE *file, void *value)
49 #endif
50   ) ;
51
52 /* Write the declaration of a packed trie to the specified files */
53 void dumpptrie(intname, extname, file, externdef, defdef, proc)
54   M_TRIE *intname ;
55   char *extname ;
56   FILE *file ;
57   char *externdef ;
58   char *defdef ;
59   void (*proc) (
60 #if defined (M_PROTO)
61     FILE *file,
62     void *value
63 #endif
64     ) ;
65   {
66     LOGICAL first = TRUE ;
67     int count = 0 ;
68     int treelen = 1 ;
69
70     /* Count nodes in tree */
71     countdown(intname, &treelen); 
72
73     if (treelen > 1) {
74       fprintf(file, "%s M_PTRIE %s[%d]\n#if defined(%s)\n = {\n",
75         externdef, extname, treelen - 1, defdef) ;
76       dumpnode(&first, file, intname, &count, proc) ;
77       fprintf(file, "}\n#endif\n  ;\n\n") ;
78       }
79     else {
80       fprintf(file, "%s M_PTRIE %s[1] ;\n\n", externdef, extname) ;
81       }
82     }