17 #define ABS(x) (((x) < 0) ? -(x) : (x)) 20 #define MAX(x,y) (((x) > (y)) ? (x) : (y)) 23 #define MIN(x,y) (((x) < (y)) ? (x) : (y)) 26 #define MAX3(x,y,z) (((x) > MAX(y,z)) ? (x) : MAX(y,z)) 29 #define MIN3(x,y,z) (((x) < MIN(y,z)) ? (x) : MIN(y,z)) 33 int scamac_increase_n_somewhat(
int n);
46 bool scamac_read_int64_nicely(
const char * str, int64_t * res);
ScaMaC index/integer types.
void scamac_print_int64_abbr(int64_t i, char *str)
void scamac_print_int64_nicely(int64_t i, char *str)