Guest User

MACRO

a guest
Mar 16th, 2020
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.14 KB | None | 0 0
  1. #define RETURN_IF_ERROR(assertion, return_value)        \
  2.     do {                            \
  3.         if (assertion) {                \
  4.             return return_value;            \
  5.         }                       \
  6.     } while (0)
Advertisement
Add Comment
Please, Sign In to add comment