summary refs log tree commit diff
path: root/src/uidgid.h
blob: a612edd325c4ecf5198b432838c892ccdc00c234 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef UIDGID_H
#define UIDGID_H

struct uidgid {
  int uid;
  int gid[61];
  int gids;
};

extern unsigned int uidgid_get(struct uidgid *, char *, unsigned int);

#endif