blob: 6d0c85b443718f1420c89e96b3d7d365c2a7cafd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef MC_SRC_UTIL_H
#define MC_SRC_UTIL_H
/*** typedefs(not structures) and defined constants **********************************************/
/*** enums ***************************************************************************************/
/*** structures declarations (and typedefs of structures)*****************************************/
/*** global variables defined in .c file *********************************************************/
/*** declarations of public functions ************************************************************/
/* Check if the file exists. If not copy the default */
gboolean check_for_default (const vfs_path_t *default_file_vpath, const vfs_path_t *file_vpath);
void file_error_message (const char *format, const char *filename);
/*** inline functions ****************************************************************************/
#endif
|