home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / TELECOM / rn_4_3_blars.lzh / only.h < prev    next >
Text File  |  1990-08-22  |  662b  |  30 lines

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