55d7029049
Version 8.3.5 was skipped due to bugs fixed in this version.
20 lines
468 B
C
20 lines
468 B
C
#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 **));
|
|
|
|
int getnetgrent_r __P((char **, char **, char **, char *, int));
|
|
|
|
void setnetgrent __P((const char *));
|
|
|
|
void endnetgrent __P((void));
|
|
|
|
int innetgr __P((const char *, const char *, const char *, const char *));
|
|
|
|
#endif
|