Blame tools/user_group.h

rpm-build 0a0c83
/*
rpm-build 0a0c83
  File: user_group.h
rpm-build 0a0c83
  (Linux Access Control List Management)
rpm-build 0a0c83
rpm-build 0a0c83
  Copyright (C) 1999 by Andreas Gruenbacher
rpm-build 0a0c83
  <a.gruenbacher@computer.org>
rpm-build 0a0c83
 	
rpm-build 0a0c83
  This program is free software; you can redistribute it and/or
rpm-build 0a0c83
  modify it under the terms of the GNU Lesser General Public
rpm-build 0a0c83
  License as published by the Free Software Foundation; either
rpm-build 0a0c83
  version 2.1 of the License, or (at your option) any later version.
rpm-build 0a0c83
rpm-build 0a0c83
  This program is distributed in the hope that it will be useful,
rpm-build 0a0c83
  but WITHOUT ANY WARRANTY; without even the implied warranty of
rpm-build 0a0c83
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
rpm-build 0a0c83
  Lesser General Public License for more details.
rpm-build 0a0c83
rpm-build 0a0c83
  You should have received a copy of the GNU Lesser General Public
rpm-build 0a0c83
  License along with this library; if not, write to the Free Software
rpm-build 0a0c83
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
rpm-build 0a0c83
*/
rpm-build 0a0c83
rpm-build 0a0c83
#include <sys/types.h>
rpm-build 0a0c83
#include <pwd.h>
rpm-build 0a0c83
#include <grp.h>
rpm-build 0a0c83
rpm-build 0a0c83
const char *
rpm-build 0a0c83
user_name(uid_t uid, int numeric);
rpm-build 0a0c83
const char *
rpm-build 0a0c83
group_name(gid_t uid, int numeric);
rpm-build 0a0c83