This repository has been archived on 2026-05-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
exclib/demo/helpers.c

15 lines
251 B
C
Raw Normal View History

#include "exclib.h"
int main(void)
{
TRY {
THROW_ZERO(NULL, EXC_NULLPOINTER, "I just threw with THROW_ZERO");
} CATCH ( EXC_NULLPOINTER ) {
THROW_NONZERO(strcmp("not", "equal"),
3,
"strcmp was nonzero!");
} ETRY;
return 0;
}