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 166B

123456789
  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_make_tree(cms_page* root, char* path, char* dirname);
  6. #endif