home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / mm / mm-ccmd-0.91-20031009.tar.gz / mm-ccmd-0.91-20031009.tar / work / ccmd / cmgrp.h < prev    next >
C/C++ Source or Header  |  1990-12-18  |  437b  |  22 lines

  1. /*
  2.  Copyright (c) 1986, 1990 by The Trustees of Columbia University in
  3.  the City of New York.  Permission is granted to any individual or
  4.  institution to use, copy, or redistribute this software so long as it
  5.  is not sold for profit, provided this copyright notice is retained.
  6.  
  7.  Author: Howie Kaye
  8. */
  9.  
  10.  
  11. /*
  12.  * symbols for username parser.
  13.  */
  14.  
  15. #define GRP_EXACT 1
  16. #define GRP_PARTIAL 2
  17.  
  18. struct grp {
  19.   struct group *grp;
  20.   int flags;
  21. };
  22.