blob: 2fe04221ddbd62bbdeebe0e96987809112e0048d (
plain)
1
2
3
4
5
6
7
8
|
#pragma once
#include <sys/types.h>
void *mode_compile(const char *mode_string);
mode_t mode_apply(const void *compiled, mode_t old_mode);
void mode_free(void *compiled);
void strmode(mode_t mode, char *buf);
|