A static site generator, written in C
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910
  1. #ifndef CMS_LOG_H
  2. #define CMS_LOG_H
  3. //Panic and halt execution.
  4. void cms_log_panic(char* msg);
  5. //Halt execution.
  6. void cms_log_error(char* msg);
  7. #endif