00001 #ifndef __HELPERS_H__
00002 #define __HELPERS_H__
00003
00004 #ifdef __cplusplus
00005 extern "C"
00006 {
00007 #endif
00008
00009 double gettime();
00010
00011 #define max(x,y) ((x) > (y) ? (x) : (y))
00012 #define min(x,y) ((x) < (y) ? (x) : (y))
00013
00014 #ifdef __cplusplus
00015 }
00016 #endif
00017
00018 #endif