opnsense-src/contrib/bind/include/netgroup.h

20 lines
468 B
C
Raw Normal View History

2002-02-04 14:12:46 -05:00
#ifndef netgroup_h
#define netgroup_h
/*
* The standard is crazy. These values "belong" to getnetgrent() and
* shouldn't be altered by the caller.
*/
int getnetgrent __P((/* const */ char **, /* const */ char **,
/* const */ char **));
2002-02-04 14:12:46 -05:00
int getnetgrent_r __P((char **, char **, char **, char *, int));
2002-02-04 14:12:46 -05:00
void setnetgrent __P((const char *));
2002-02-04 14:12:46 -05:00
void endnetgrent __P((void));
2002-02-04 14:12:46 -05:00
int innetgr __P((const char *, const char *, const char *, const char *));
2002-02-04 14:12:46 -05:00
#endif