home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / system / mail / delivery / deliver.tz / deliver / context.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-10-24  |  527 b   |  26 lines

  1. /* $Header: context.h,v 2.1 89/06/09 12:25:15 network Exp $
  2.  *
  3.  * User context, as found in /etc/passwd.
  4.  *
  5.  * $Log:    context.h,v $
  6.  * Revision 2.1  89/06/09  12:25:15  network
  7.  * Update RCS revisions.
  8.  * 
  9.  * Revision 1.3  89/06/09  12:23:40  network
  10.  * Baseline for 2.0 release.
  11.  * 
  12.  */
  13.  
  14. /*----------------------------------------------------------------------
  15.  * The context structure.
  16.  */
  17.  
  18. #define CONTEXT struct context
  19. CONTEXT {
  20.     CONTEXT *ct_next;
  21.     int     ct_uid;
  22.     int     ct_gid;
  23.     char    *ct_name;
  24.     char    *ct_home;
  25. };
  26.