summaryrefslogtreecommitdiff
path: root/include/grp.h
blob: 87f6a7bec2c0dd430ec053ec8392fff3970ab457 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _GRP_H
#include <grp/grp.h>

/* Now define the internal interfaces.  */
extern int __getgrent_r __P ((struct group *__resultbuf, char *buffer,
			      size_t __buflen, struct group **__result));
extern int __fgetgrent_r __P ((FILE * __stream, struct group *__resultbuf,
			       char *buffer, size_t __buflen,
			       struct group **__result));

/* Search for an entry with a matching group ID.  */
extern int __getgrgid_r __P ((__gid_t __gid, struct group *__resultbuf,
			      char *__buffer, size_t __buflen,
			      struct group **__result));

/* Search for an entry with a matching group name.  */
extern int __getgrnam_r __P ((__const char *__name, struct group *__resultbuf,
			      char *__buffer, size_t __buflen,
			      struct group **__result));
#endif