chibicc/test/test.h

7 lines
172 B
C
Raw Normal View History

2020-09-04 13:03:01 +03:00
#define ASSERT(x, y) assert(x, y, #y)
2020-09-04 05:45:29 +03:00
void assert(int expected, int actual, char *code);
2020-09-04 05:45:29 +03:00
int printf();
int strcmp(char *p, char *q);
int memcmp(char *p, char *q, long n);