source: asp3_tinet_ecnl_rx/trunk/musl-1.1.18/src/passwd/getpwent.c@ 337

Last change on this file since 337 was 337, checked in by coas-nagasima, 6 years ago

ASP3版ECNLを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 594 bytes
Line 
1#include "pwf.h"
2
3static FILE *f;
4static char *line;
5static struct passwd pw;
6static size_t size;
7
8void setpwent()
9{
10 if (f) fclose(f);
11 f = 0;
12}
13
14weak_alias(setpwent, endpwent);
15
16struct passwd *getpwent()
17{
18 struct passwd *res;
19 if (!f) f = fopen("/etc/passwd", "rbe");
20 if (!f) return 0;
21 __getpwent_a(f, &pw, &line, &size, &res);
22 return res;
23}
24
25struct passwd *getpwuid(uid_t uid)
26{
27 struct passwd *res;
28 __getpw_a(0, uid, &pw, &line, &size, &res);
29 return res;
30}
31
32struct passwd *getpwnam(const char *name)
33{
34 struct passwd *res;
35 __getpw_a(name, 0, &pw, &line, &size, &res);
36 return res;
37}
Note: See TracBrowser for help on using the repository browser.