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

14 lines
196 B
C
Raw Normal View History

#include "exclib.h"
int main(void)
{
TRY {
THROW(2, NULL);
} CATCH_GROUP(1) {
} CATCH_GROUP(2) {
} CATCH_GROUP(3) {
EXCLIB_TRACE("Inside of CATCH_GROUP");
} ETRY;
return 0;
}