16 lines
346 B
C
16 lines
346 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 REAL_FILENAME_H
|
|
#define REAL_FILENAME_H
|
|
|
|
const char *real_filename(const char *filename);
|
|
const char *get_mountpoint(void);
|
|
|
|
#endif // !REAL_FILENAME_H
|