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_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