mc/src/util.h
Slava Zanko c58365fa64 Move check_for_default() function from lib/util.c to src/util.c
Signed-off-by: Slava Zanko <slavazanko@gmail.com>
2011-03-21 23:55:51 +02:00

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 */