source: MondoRescue/branches/3.3/mindi-busybox/include/grp_.h@ 3621

Last change on this file since 3621 was 3621, checked in by Bruno Cornec, 7 years ago

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

File size: 2.4 KB
RevLine 
[1765]1/* vi: set sw=4 ts=4: */
[821]2/* Copyright (C) 1991,92,95,96,97,98,99,2000,01 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 Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the 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 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
[2725]18 02111-1307 USA.
19 */
[821]20/*
[2725]21 * POSIX Standard: 9.2.1 Group Database Access <grp.h>
[821]22 */
[2725]23#ifndef BB_GRP_H
24#define BB_GRP_H 1
[821]25
[2725]26PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
[821]27
[2725]28/* This file is #included after #include <grp.h>
29 * We will use libc-defined structures, but will #define function names
30 * so that function calls are directed to bb_internal_XXX replacements
31 */
[3232]32#undef endgrent
[1765]33#define endgrent bb_internal_endgrent
34#define getgrgid bb_internal_getgrgid
35#define getgrnam bb_internal_getgrnam
36#define getgrouplist bb_internal_getgrouplist
37#define initgroups bb_internal_initgroups
[821]38
[1765]39/* All function names below should be remapped by #defines above
[2725]40 * in order to not collide with libc names. */
[1765]41
[821]42/* Close the group-file stream. */
[3621]43void FAST_FUNC endgrent(void);
[821]44
45/* Search for an entry with a matching group ID. */
[3621]46struct group* FAST_FUNC getgrgid(gid_t __gid);
[821]47
48/* Search for an entry with a matching group name. */
[3621]49struct group* FAST_FUNC getgrnam(const char *__name);
[821]50
[3621]51/* Reentrant versions of some of the functions above. */
[821]52
53/* Store at most *NGROUPS members of the group set for USER into
54 *GROUPS. Also include GROUP. The actual number of groups found is
55 returned in *NGROUPS. Return -1 if the if *NGROUPS is too small. */
[3621]56int FAST_FUNC getgrouplist(const char *__user, gid_t __group,
[3232]57 gid_t *__groups, int *__ngroups);
[821]58
59/* Initialize the group set for the current user
60 by reading the group database and using all groups
61 of which USER is a member. Also include GROUP. */
[3621]62int FAST_FUNC initgroups(const char *__user, gid_t __group);
[821]63
[2725]64POP_SAVED_FUNCTION_VISIBILITY
[821]65
66#endif
Note: See TracBrowser for help on using the repository browser.