groupmember — checks group set for a group ID
Contents
Description
The groupmember() function checks to see if the given gid is in the group set of the credentials.
Its arguments are:
gid The group ID to check for.
cred The credentials to search for the group in.
Name
groupmember — checks group set for a group ID
Return Values
If the gid is found, 1 is returned; otherwise, 0 is returned.
Synopsis
#include<sys/param.h>#include<sys/ucred.h>intgroupmember(gid_tgid, structucred*cred);
