A static site generator, written in C
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

9 лет назад
9 лет назад
9 лет назад
9 лет назад
123456789101112131415161718
  1. #ifndef CMS_POST_H
  2. #define CMS_POST_H
  3. #include "cms_err.h"
  4. typedef struct cms_post
  5. {
  6. char* _str;
  7. char* title;
  8. char* slug;
  9. char* html;
  10. } cms_post;
  11. cms_post* cms_post_create();
  12. cms_err* cms_post_parse(cms_post* post, char* str, char* slugstr);
  13. #endif