c_exceptional icon indicating copy to clipboard operation
c_exceptional copied to clipboard

A simple Exception-handling library for C99, that uses some fancy macros for true try{...}catch(err){...}finally{...} syntax!

Results 2 c_exceptional issues
Sort by recently updated
recently updated
newest added

According to this page: (TODO: find appropriate section in the C99 standard itself) http://en.cppreference.com/w/c/program/setjmp it is not allowed to store the output value of`setjmp`, and it can only occur in...

Fixes: - Reraising from catch will now first run inner finally block before re-throwing to the outer environment. - Debugging text is now hidden unless the `DEBUG_EXCEPTIONAL` flag is set....