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.

12345678910111213141516
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include "cms_log.h"
  4. void cms_log_panic(char* msg)
  5. {
  6. fprintf(stderr, "Fatal error: %s\n", msg);
  7. exit(1);
  8. }
  9. void cms_log_error(char* msg)
  10. {
  11. fprintf(stderr, "Error: %s\n", msg);
  12. exit(1);
  13. }