mirror of
https://github.com/encounter/ph.git
synced 2026-03-30 11:34:37 -07:00
9 lines
254 B
C
9 lines
254 B
C
#ifndef _C_ASSERT_H
|
|
#define _C_ASSERT_H
|
|
|
|
#define assert(condition) (void) ((condition) || __assert_failed(#condition, __FILE__, __FUNCTION__, __LINE__));
|
|
|
|
void __assert_failed(char *condition, char *fileName, char *functionName, s32 lineNumber);
|
|
|
|
#endif
|