/* * cf_local.h */ #ifndef __CF_LOCAL_H__ #define __CF_LOCAL_H__ #define TRY do #define TRY_BREAK break #define CATCH_IF(__expr) while (0); if (__expr) #define CATCH_ELSE_IF(__expr) else if (__expr) #define CATCH_ELSE else #endif // #ifndef __CF_LOCAL_H__