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/default.c

13 lines
184 B
C

#include "exclib.h"
#include <stdio.h>
int main(void)
{
TRY {
THROW(2, NULL);
} DEFAULT {
EXCLIB_TRACE("Inside of DEFAULT - I catch everything!");
} ETRY;
return 0;
}