#ifndef __GENERAL_H__ #define __GENERAL_H__ #define MAX(__a,__b) ((__a)<(__b)?(__b):(__a)) #define MIN(__a,__b) ((__a)>(__b)?(__b):(__a)) #endif