util.h 804 B

1234567891011121314151617181920
  1. #ifndef MC_SRC_UTIL_H
  2. #define MC_SRC_UTIL_H
  3. /*** typedefs(not structures) and defined constants **********************************************/
  4. /*** enums ***************************************************************************************/
  5. /*** structures declarations (and typedefs of structures)*****************************************/
  6. /*** global variables defined in .c file *********************************************************/
  7. /*** declarations of public functions ************************************************************/
  8. /* Check if the file exists. If not copy the default */
  9. int check_for_default (const char *default_file, const char *file);
  10. /*** inline functions ****************************************************************************/
  11. #endif /* MC_SRC_UTIL_H */