1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
.\" Copyright (C) 2014, Michael Kerrisk <mtk.manpages@gmail.com>
.\"
.\" SPDX-License-Identifier: Linux-man-pages-copyleft
.\"
.TH group_member 3 2024-05-02 "Linux man-pages (unreleased)"
.SH NAME
group_member \- test whether a process is in a group
.SH LIBRARY
Standard C library
.RI ( libc ", " \-lc )
.SH SYNOPSIS
.nf
.B #include <unistd.h>
.P
.BI "int group_member(gid_t " gid );
.fi
.P
.RS -4
Feature Test Macro Requirements for glibc (see
.BR feature_test_macros (7)):
.RE
.P
.BR group_member ():
.nf
_GNU_SOURCE
.fi
.SH DESCRIPTION
The
.BR group_member ()
function tests whether any of the caller's supplementary group IDs
(as returned by
.BR getgroups (2))
matches
.IR gid .
.SH RETURN VALUE
The
.BR group_member ()
function returns nonzero if any of the caller's
supplementary group IDs matches
.IR gid ,
and zero otherwise.
.SH STANDARDS
GNU.
.SH SEE ALSO
.BR getgid (2),
.BR getgroups (2),
.BR getgrouplist (3),
.BR group (5)
|