blob: a71e78b3320f146ed6d4fe6265f7428f2cc54820 (
plain)
1
2
3
4
5
6
|
#ifndef PKE_PKE_TEST_TYPES_H
#define PKE_PKE_TEST_TYPES_H
#define PKE_TEST_ASSERT(condition, index) if (!(condition)) { return ++index; } else { ++index; }
#endif /* PKE_PKE_TEST_TYPES_H */
|