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

17 lines
239 B
C
Raw Permalink Normal View History

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