mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
c58365fa64
Signed-off-by: Slava Zanko <slavazanko@gmail.com>
21 lines
804 B
C
21 lines
804 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 */
|
|
int check_for_default (const char *default_file, const char *file);
|
|
|
|
/*** inline functions ****************************************************************************/
|
|
|
|
#endif /* MC_SRC_UTIL_H */
|
|
|