Skip to content

Commit a0ff4d2

Browse files
committed
Auto merge of #2943 - SteveLauC:fgetpwent_r-and-fgetgrent_r-on-GNU-Linux, r=JohnTitor
add fgetpwent_r and fgetgrent_r on GNU/Linux [man page for `fgetpwent_r()`](https://man7.org/linux/man-pages/man3/getpwent_r.3.html) [man page for `fgetgrent_r()`](https://man7.org/linux/man-pages/man3/getgrent_r.3.html)
2 parents 2dfe1ab + b1ccdcc commit a0ff4d2

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

libc-test/semver/linux-gnu.txt

+2
Original file line numberDiff line numberDiff line change
@@ -589,9 +589,11 @@ futimes
589589
getauxval
590590
getentropy
591591
getgrent_r
592+
fgetgrent_r
592593
getloadavg
593594
getpt
594595
getpwent_r
596+
fgetpwent_r
595597
getpwnam_r
596598
getspent_r
597599
getutxent

src/unix/linux_like/linux/gnu/mod.rs

+14
Original file line numberDiff line numberDiff line change
@@ -1310,6 +1310,20 @@ extern "C" {
13101310
buflen: ::size_t,
13111311
result: *mut *mut ::group,
13121312
) -> ::c_int;
1313+
pub fn fgetpwent_r(
1314+
stream: *mut ::FILE,
1315+
pwd: *mut ::passwd,
1316+
buf: *mut ::c_char,
1317+
buflen: ::size_t,
1318+
result: *mut *mut ::passwd,
1319+
) -> ::c_int;
1320+
pub fn fgetgrent_r(
1321+
stream: *mut ::FILE,
1322+
grp: *mut ::group,
1323+
buf: *mut ::c_char,
1324+
buflen: ::size_t,
1325+
result: *mut *mut ::group,
1326+
) -> ::c_int;
13131327

13141328
pub fn sethostid(hostid: ::c_long) -> ::c_int;
13151329

0 commit comments

Comments
 (0)