]> git.ipfire.org Git - thirdparty/glibc.git/blame - nss/nss_files/files-grp.c
Mon Jul 1 15:44:34 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
[thirdparty/glibc.git] / nss / nss_files / files-grp.c
CommitLineData
5f0e6fc7
RM
1/* Group file parser in nss_files module.
2Copyright (C) 1996 Free Software Foundation, Inc.
28f540f4
RM
3This file is part of the GNU C Library.
4
5The GNU C Library is free software; you can redistribute it and/or
6modify it under the terms of the GNU Library General Public License as
7published by the Free Software Foundation; either version 2 of the
8License, or (at your option) any later version.
9
10The GNU C Library is distributed in the hope that it will be useful,
11but WITHOUT ANY WARRANTY; without even the implied warranty of
12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13Library General Public License for more details.
14
15You should have received a copy of the GNU Library General Public
16License along with the GNU C Library; see the file COPYING.LIB. If
17not, write to the Free Software Foundation, Inc., 675 Mass Ave,
18Cambridge, MA 02139, USA. */
19
28f540f4
RM
20#include <grp.h>
21
5f0e6fc7
RM
22#define STRUCTURE group
23#define ENTNAME grent
24#define DATAFILE "/etc/group"
25struct grent_data {};
26
27#define TRAILING_LIST_MEMBER gr_mem
28#define TRAILING_LIST_SEPARATOR_P(c) ((c) == ',')
29#include "files-parse.c"
30LINE_PARSER
31(
32 STRING_FIELD (result->gr_name, ISCOLON, 0);
33 STRING_FIELD (result->gr_passwd, ISCOLON, 0);
34 INT_FIELD (result->gr_gid, ISCOLON, 0, 10,);
35)
36
37#include "files-XXX.c"
38
39DB_LOOKUP (grnam,
40 {
41 if (! strcmp (name, result->gr_name))
42 break;
43 }, const char *name)
44
45DB_LOOKUP (grgid,
46 {
47 if (result->gr_gid == gid)
48 break;
49 }, gid_t gid)