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

struct uidgid {
  int uid;
  int gid;
};

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

#endif