15 lines
316 B
C
15 lines
316 B
C
/*
|
|
ICFS: Interactively Controlled File System
|
|
Copyright (C) 2024-2025 Fedir Kovalov
|
|
|
|
This program can be distributed under the terms of the GNU GPLv2.
|
|
See the file LICENSE.
|
|
*/
|
|
|
|
#ifndef ACCESS_T_H
|
|
#define ACCESS_T_H
|
|
|
|
typedef enum { DENY, ALLOW, ALLOW_TEMP, DENY_TEMP, NDEF } access_t;
|
|
|
|
#endif // !ACCESS_T_H
|