A static site generator, written in C
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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