mirror of
https://github.com/zeldaret/ph
synced 2026-05-24 07:10:52 -04:00
38e9378f8f
* Make types compatible with dsd-ghidra typesync * Update actors.md * Update docs * Delink ActorShopItem.cpp
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, int lineNumber);
|
|
|
|
#endif
|