14 lines
304 B
C
14 lines
304 B
C
#ifndef H_FILE
|
|
#define H_FILE
|
|
|
|
#include <pwd.h>
|
|
#include <string.h>
|
|
#include <sys/stat.h>
|
|
|
|
struct st_audit ownership(uid_t, char *, size_t);
|
|
void permission(mode_t, struct st_audit *, struct st_audit *, struct st_audit *);
|
|
int convert_mode_t(mode_t);
|
|
static void get_username(uid_t uid, char *);
|
|
|
|
#endif
|