home *** CD-ROM | disk | FTP | other *** search
/ Mac Power 1999 February / MACPOWER-1999-02.ISO.7z / MACPOWER-1999-02.ISO / 9902⁄AMUG / UTILITY / mac06-0.95.sit / mac06-0.95 / usr / include / pwd.h < prev    next >
Text File  |  1998-04-14  |  317b  |  23 lines

  1. /* mac06ゥ1998 by HNS/DSITRI hns@computer.org
  2. ** pwd.h
  3. */
  4.  
  5. #pragma once
  6.  
  7. #include "sys/types.h"
  8.  
  9. #define __PASSWD "/etc/passwd"
  10.  
  11. struct passwd {
  12.     char    *pw_name;
  13.     uid_t    pw_uid;
  14.     gid_t    pw_gid;
  15.     char    *pw_dir;
  16.     char    *pw_shell;
  17.     };
  18.  
  19. struct passwd *getpwnam(const char *name);
  20. struct passwd *getpwuid(uid_t uid);
  21.  
  22. /* EOF */
  23.