mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-03 20:40:08 -05:00
17 lines
394 B
C
17 lines
394 B
C
#ifndef netgroup_h
|
|
#define netgroup_h
|
|
|
|
int getnetgrent(const char **machinep, const char **userp,
|
|
const char **domainp);
|
|
|
|
int getnetgrent_r(char **machinep, char **userp, char **domainp,
|
|
char *buffer, int buflen);
|
|
|
|
void setnetgrent(const char *netgroup);
|
|
|
|
void endnetgrent(void);
|
|
|
|
int innetgr(const char *netgroup, const char *machine,
|
|
const char *user, const char *domain);
|
|
|
|
#endif
|