test whether a process is in a group
Standard C library (libc, -lc)
The group_member() function tests whether any of the caller's supplementary group IDs (as returned by getgroups(2)) matches gid.
The group_member() function returns nonzero if any of the caller's supplementary group IDs matches gid, and zero otherwise.
GNU.