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