Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/emscripten-core/emscripten
/ main
Function
main
test/core/test_setjmp_within_loop.c:21–32 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
19
int n = 3;
20
21
int main() {
22
while (n-- > 0) {
23
a();
24
if (setjmp(buf))
25
b();
26
else
27
c();
28
}
29
if (d())
30
longjmp(buf, 3);
31
return 0;
32
}
Callers
nothing calls this directly
Calls
4
a
Function · 0.70
b
Function · 0.70
c
Function · 0.70
d
Function · 0.70
Tested by
no test coverage detected