Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef _bits_h_
00013 #define _bits_h_
00014
00015 #ifndef min
00016 #define min(a,b) ((a) < (b) ? (a) : (b))
00017 #endif
00018
00019 #ifndef max
00020 #define max(a,b) ((a) > (b) ? (a) : (b))
00021 #endif
00022
00023 #define hexdigit(x) (((x) <= '9') ? (x) - '0' : ((x) & 7) + 9)
00024 #define error_ptr(error) ((void*)error)
00025 #define is_error(ptr) ((unsigned long)ptr > (unsigned long)-4000L)
00026
00027 #endif