diff options
author | Denis Vlasenko | 2008-12-03 19:05:55 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-12-03 19:05:55 +0000 |
commit | d7a805efafd83203e72c334089c3f88204231ac7 (patch) | |
tree | d69521a26d050432f89cf5713aa1516f655b136f /include/libbb.h | |
parent | ac1c96f6737799d1d7f85515237df80e9da71346 (diff) | |
download | busybox-d7a805efafd83203e72c334089c3f88204231ac7.zip busybox-d7a805efafd83203e72c334089c3f88204231ac7.tar.gz |
libbb: introduce and use xgetpwnam. ~ -150 bytes.
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index a34e8a1..80311db 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -702,6 +702,7 @@ int get_uidgid(struct bb_uidgid_t*, const char*, int numeric_ok) FAST_FUNC; void xget_uidgid(struct bb_uidgid_t*, const char*) FAST_FUNC; /* chown-like handling of "user[:[group]" */ void parse_chown_usergroup_or_die(struct bb_uidgid_t *u, char *user_group) FAST_FUNC; +struct passwd* xgetpwnam(const char *name) FAST_FUNC; struct passwd* xgetpwuid(uid_t uid) FAST_FUNC; struct group* xgetgrgid(gid_t gid) FAST_FUNC; char* xuid2uname(uid_t uid) FAST_FUNC; |