Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /** \file macro.h
- \brief Alcune macro utilizzate sia in dgraph.c che in shortestpath.c
- \author Alessandro Ambrosano
- Si dichiara che il contenuto di questo file è in ogni sua parte
- opera originale dell'autore.
- */
- #define CHECK_EINVAL_X(cond, extracode, r)\
- if (cond) {\
- extracode\
- errno = EINVAL;\
- return r;\
- }
- #define CHECK_EINVAL(cond, r)\
- if (cond) {\
- errno = EINVAL;\
- return r;\
- }
- #define CHECK_ENOMEM_X(cond, extracode, r)\
- if (cond) {\
- extracode\
- errno = ENOMEM;\
- return r;\
- }
- #define CHECK_ENOMEM(cond, r)\
- if (cond) {\
- errno = ENOMEM;\
- return r;\
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement