NetBSD/dist/bind/include/netgroup.h

22 lines
534 B
C

/* $NetBSD: netgroup.h,v 1.2 2003/06/03 07:33:47 itojun Exp $ */
#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