A static site generator, written in C
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

cms_build.h 227B

1234567891011
  1. #ifndef CMS_BUILD_H
  2. #define CMS_BUILD_H
  3. #include "cms_err.h"
  4. #include "cms_page.h"
  5. cms_err* cms_build_write_files(cms_page* root, char* path);
  6. cms_err* cms_build_make_tree(cms_page* root, char* path, char* dirname);
  7. #endif