mirror of
https://github.com/coreutils/coreutils.git
synced 2024-12-04 07:24:22 +08:00
11 lines
198 B
C
11 lines
198 B
C
#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
|