Renderer/test/c/test.h
austin 52c98beb7a
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
Add tests for chunk.c
2024-12-04 20:20:39 -05:00

8 lines
130 B
C

#ifndef TEST_H
#define TEST_H
int assertEquals(int a, int b, char * msg);
int assertNotEquals(int a, int b, char * msg);
#endif