xref: /original-bsd/usr.bin/struct/struct/1.main.c (revision e59fb703)
1 /*-
2  * %sccs.include.proprietary.c%
3  */
4 
5 #ifndef lint
6 static char sccsid[] = "@(#)1.main.c	4.2 (Berkeley) 04/16/91";
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