OILS
/
build
/ detect-pwent.c
View on Github
|
oilshell.org
9 lines, 7 significant
1
#include
<pwd.h>
// passwd
2
3
int main(void)
{
4
setpwent();
5
struct passwd* entry;
6
entry = getpwent();
7
endpwent();
8
return 0;
9
}