home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (C) 1986 Alan Kent
- *
- * Permission is granted to freely distribute part or
- * all of this code as long as it is not for profit
- * and this message is retained in the code.
- *
- * No resposibility is taken for any damage or incorect
- * results this program generates.
- *
- */
-
-
- #include <stdio.h>
- #include "graph.h"
-
- int linenum = 1;
- char *infilename;
- char *PROG_NAME = "graph+";
- axis_st xaxis , yaxis;
- graph_st graph[ MAX_GRAPHS ];
- int num_graphs = 0;
- char *graph_label = NULL;
- int warnings;
- int gargc;
- char **gargv;
- int horiz_legend; /* LEFT, CENTER, RIGHT */
- int vert_legend; /* TOP, MIDDLE, BOTTOM */
-
-