utils.h 267 B

12345678
  1. #pragma once
  2. #include <stdlib.h>
  3. #include <stdio.h>
  4. #define STR1_(m) #m
  5. #define STR_(m) STR1_(m)
  6. #define PRINT_(fmt, ...) fprintf(stderr, __FILE__ ":" STR_(__LINE__) ": " fmt "\n", __VA_ARGS__)
  7. #define ASSERT(cond) if (!(cond)){PRINT_("%s failed", #cond); abort();}