mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 04:46:55 +03:00
a9ff27db05
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
20 lines
834 B
C
20 lines
834 B
C
#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);
|
|
|
|
/*** inline functions ****************************************************************************/
|
|
|
|
#endif /* MC_SRC_UTIL_H */
|