File: netgroup.h

package info (click to toggle)
bind9 1%3A9.2.4-1sarge3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 26,564 kB
  • ctags: 20,462
  • sloc: ansic: 200,552; sh: 23,078; xml: 5,665; makefile: 3,572; perl: 2,910; cpp: 1,305; tcl: 842; python: 77
file content (24 lines) | stat: -rw-r--r-- 602 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef netgroup_h
#define netgroup_h
#ifndef __GLIBC__

/*
 * 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 endnetgrent __P((void));

#ifdef __osf__
int innetgr __P((char *, char *, char *, char *));
void setnetgrent __P((char *));
#else
void setnetgrent __P((const char *));
int innetgr __P((const char *, const char *, const char *, const char *));
#endif
#endif
#endif