| Zane Shelley | 814b1e3 | 2019-06-17 20:55:04 -0500 | [diff] [blame] | 1 | #include <stdio.h> |
| 2 | #include <assert.h> | ||||
| 3 | |||||
| 4 | #define HEI_INF( ... ) \ | ||||
| 5 | { \ | ||||
| 6 | printf( "I> " __VA_ARGS__ ); \ | ||||
| 7 | printf( "\n" ); \ | ||||
| 8 | } | ||||
| 9 | |||||
| 10 | #define HEI_ERR( ... ) \ | ||||
| 11 | { \ | ||||
| 12 | printf( "E> " __VA_ARGS__ ); \ | ||||
| 13 | printf( "\n" ); \ | ||||
| 14 | } | ||||
| 15 | |||||
| 16 | #define HEI_ASSERT( expression ) \ | ||||
| 17 | assert( expression ); | ||||
| 18 | |||||