home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / pine / ccmd / cmgrp.cnf < prev    next >
Encoding:
Text File  |  1988-08-19  |  855 b   |  33 lines

  1.  
  2. _ Author: Howie Kaye
  3. _
  4. _ Columbia University Center for Computing Activities, July 1986.
  5. _ Copyright (C) 1986, 1987, Trustees of Columbia University in the
  6. _ City of New York.  Permission is granted to any individual or
  7. _ institution to use, copy, or redistribute this software so long as
  8. _ it is not sold for profit, provided this copyright notice is
  9. _ retained.
  10. _
  11.  
  12. /* groupname parse errors */
  13. fnerror(NM, `Does not match group name')
  14. fnerror(AMB,`ambiguous')
  15.  
  16. fnflag(WILD)                /* allow wild groups */
  17. fnflag(NOUPD)                /* defer update of group table */
  18.                     /* even if /etc/group has been  */
  19.                     /* updated */
  20. fnflag(UPDONLY)                /* forced update of group table */
  21.                     /* parse will fail. */
  22.                     /* allows table to updated with  */
  23.                     /* no parse done. */
  24.  
  25. #if unix
  26. #include <grp.h>
  27. #else
  28. struct group {
  29.   int x;
  30. };
  31. #endif
  32. pvtype(struct group **)_
  33.