blob: 54c73447cefaf598210e5cb6a9c433f700257971 [file] [log] [blame]
Zane Shelley814b1e32019-06-17 20:55:04 -05001#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