A static site generator, written in C
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

cms_log.h 154B

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