home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume8 / graph+ / part03 / global.c < prev    next >
Encoding:
C/C++ Source or Header  |  1987-03-01  |  623 b   |  30 lines

  1. /*
  2.  * Copyright (C) 1986   Alan Kent
  3.  *
  4.  * Permission is granted to freely distribute part or
  5.  * all of this code as long as it is not for profit
  6.  * and this message is retained in the code.
  7.  *
  8.  * No resposibility is taken for any damage or incorect
  9.  * results this program generates.
  10.  * 
  11.  */
  12.  
  13.  
  14. #include <stdio.h>
  15. #include "graph.h"
  16.  
  17. int linenum = 1;
  18. char *infilename;
  19. char *PROG_NAME = "graph+";
  20. axis_st xaxis , yaxis;
  21. graph_st graph[ MAX_GRAPHS ];
  22. int num_graphs = 0;
  23. char *graph_label = NULL;
  24. int warnings;
  25. int gargc;
  26. char **gargv;
  27. int horiz_legend;    /* LEFT, CENTER, RIGHT */
  28. int vert_legend;    /* TOP, MIDDLE, BOTTOM */
  29.  
  30.