helper.h 141 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 #ifndef _HELPER_H_ #define _HELPER_H_ #define ABS(a) ((a)<0 ? -(a) : (a)) #define MAX(a,b) ((a) > (b) ? (a) : (b)) #endif /* _HELPER_H */