13 lines
208 B
C
13 lines
208 B
C
#ifndef LIBFLINT_H_MATH
|
|
#define LIBFLINT_H_MATH
|
|
|
|
int max_int(int a, int b);
|
|
|
|
int min_int(int a, int b);
|
|
|
|
int clamp_int(int i, int low, int high);
|
|
|
|
int binstr_to_int(const char *s);
|
|
|
|
#endif // LIBFLINT_H_MATH
|