mirror of
https://github.com/vale981/libblobpack
synced 2025-03-06 02:11:43 -05:00
4 lines
198 B
C
4 lines
198 B
C
#pragma once
|
|
|
|
#define STR(x) #x
|
|
#define TEST(x) if(!(x)){ printf("test failed at %d, %s: %s\n", __LINE__, __FILE__, STR(x)); exit(-1); } else { printf("[OK] %s\n", STR(x)); }
|