blob: 2c1031fb6ba71eefa756ced1b50531bd7f7a841f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* $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
|