|
|
|
|
|
by nextaccountic
1257 days ago
|
|
> Why C doesn't officially have nested functions is, well, that's C! Maybe some day it will. It should anyway But GCC and Clang already support it, and while I can't find if MSVC does, it probably does edit: also, now I see that the goto in if (errno) goto err is really just an (inlined) tail call! |
|
In general, any random C compiler is likely to not support that feature, because the way it interacts with function pointers makes it unnecessarily complicated.