I\'m currently trying to figure out a way to break out of a for loop from within a function called in that loop. I\'m aware of the possibility to just have the
for
Consider inlining your function manually in the for loop. If this function is called in multiple loops, define it as a macro:
#define f()\ printf("a: %d", a);\ break;