xref: /original-bsd/usr.bin/struct/struct/1.main.c (revision c3e32dec)
1 /*-
2  * %sccs.include.proprietary.c%
3  */
4 
5 #ifndef lint
6 static char sccsid[] = "@(#)1.main.c	8.1 (Berkeley) 06/06/93";
7 #endif /* not lint */
8 
9 #include <stdio.h>
10 #include "def.h"
11 int endbuf;
12 
13 mkgraph()
14 	{
15 	if (!parse())
16 		return(FALSE);
17 	hash_check();
18 	hash_free();
19 	fingraph();
20 	return(TRUE);
21 	}
22