home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume3 / pathalias2 / part2 / extern.c < prev    next >
Encoding:
C/C++ Source or Header  |  1986-11-30  |  650 b   |  27 lines

  1. /* pathalias -- by steve bellovin, as told to peter honeyman */
  2. #ifndef lint
  3. static char    *sccsid = "@(#)extern.c    8.1 (down!honey) 86/01/19";
  4. #endif lint
  5.  
  6. #include "def.h"
  7.  
  8. node    *Home;
  9. char    *Cfile;
  10. char    **Ifiles;
  11. char    *ProgName;
  12. int    Vflag;
  13. int    Cflag;
  14. int    Iflag;
  15. int    Tflag;
  16. int    Lineno = 1;
  17. char    *Netchars = "!:@%";    /* sparse, but sufficient */
  18. int    Ncount;
  19. int    Lcount;
  20. char    *Graphout;
  21. char    *Linkout;
  22. node    **Table;        /* hash table + priority queue */
  23. long    Tabsize;        /* size of Table */    
  24. node    *Private;        /* list of private nodes in this file */
  25. long    Hashpart;        /* used while mapping -- above is heap */
  26. int    Scanstate = NEWLINE;    /* scanner (yylex) state */
  27.