Hallo!
I\'m looking for a way to add custom messages to assert statements. I found this questions Add custom messages in assert? but the message is static there. I w
#define ASSERT_WITH_MESSAGE(condition, message) do { \ if (!(condition)) { printf((message)); } \ assert ((condition)); } while(false)