home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume23 / trn / part14 / only.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-22  |  800 b   |  33 lines

  1. /* $Header: only.h,v 4.3.3.1 91/01/16 03:26:16 davison Trn $
  2.  *
  3.  * $Log:    only.h,v $
  4.  * Revision 4.3.3.1  91/01/16  03:26:16  davison
  5.  * Added optional prototyping.
  6.  * 
  7.  * Revision 4.3  85/05/01  11:45:27  lwall
  8.  * Baseline for release with 4.3bsd.
  9.  * 
  10.  */
  11.  
  12. #ifndef NBRA
  13. #include "search.h"
  14. #endif
  15.  
  16. #ifdef ONLY
  17.     EXT char *ngtodo[NGMAX];        /* restrictions in effect */
  18. #   ifdef SPEEDOVERMEM
  19.     EXT COMPEX *compextodo[NGMAX];    /* restrictions in compiled form */
  20. #   endif
  21. #endif
  22.  
  23. EXT int maxngtodo INIT(0);            /*  0 => no restrictions */
  24.                     /* >0 => # of entries in ngtodo */
  25.  
  26. void    only_init ANSI((void));
  27. bool    inlist ANSI((char *));    /* return TRUE if ngname is in command line list */
  28.             /* or if there was no list */
  29. void    setngtodo ANSI((char *));
  30. #ifdef ONLY
  31.     void    end_only ANSI((void));
  32. #endif
  33.