blob: 8a09eaea0c912d9d80e7f92d534727c5c4c5da9b (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef USERSPEC_H
# define USERSPEC_H 1
# include <sys/types.h>
const char *
parse_user_spec (const char *spec_arg, uid_t *uid, gid_t *gid,
char **username_arg, char **groupname_arg);
#endif
|