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

#include <sys/types.h>

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

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

#endif