#ifndef _HELPER_H_ #define _HELPER_H_ #define ABS(a) ((a)<0 ? -(a) : (a)) #define MAX(a,b) ((a) > (b) ? (a) : (b)) #endif /* _HELPER_H */