#ifndef CMS_UTIL_H #define CMS_UTIL_H //Returns 1 if a file exists, 0 if it doesn't. int cms_util_file_exists(char* fname); //Create a file void cms_util_file_create(char* fname); //Joins together two paths. char* cms_util_join_paths(char* str1, char* str2); #endif