Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pwd.h « mpw « include - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2d4fb70401aa365686414f1abff96deba9018f61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __pwd_h
#define __pwd_h

#include <sys/types.h>

struct passwd {
  char *pw_name;
  uid_t pw_uid;
  gid_t pw_gid;
  char *pw_dir;
  char *pw_shell;
  char *pw_passwd;
};

#endif /* ! __pwd_h */