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