1 2 3 4 5 6 7 8
#ifndef ASSERT_H #define ASSERT_H #include <assert.h> #define Assert(c) assert(c) #endif