home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / security / Watcher / externs.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-07-14  |  605 b   |  30 lines

  1. /*
  2.    externs: external variable declarations for all of the program.
  3.    Beware though that many of the variables that the parser uses are
  4.    actualy externs also due to the way variables are declared for use
  5.    with yacc.
  6.  
  7.    Kenneth Ingham
  8.  
  9.    Copyright (C) 1987 The University of New Mexico
  10. */
  11.  
  12. #include "defs.h"
  13. #include "y.tab.h"
  14.  
  15. struct cmd_st *clist = NULL;
  16. struct old_cmd_st *chead = NULL;
  17.  
  18. int parse_error = False;
  19.  
  20. int pflag, cflag, vflag, nflag;
  21. int lexverbose;
  22. char *histfilename;
  23. char *controlname;
  24. int line_ok;
  25. int cmd_ok;
  26. int control_line = 1;
  27. char *myname;
  28.  
  29. struct out_fmt_st *key = NULL;
  30.