1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-28 01:35:32 +00:00
elinks/src/util/math.h
Witold Filipczyk 5a14b61c0d [register] Drop register
Compilers are smart and don't need such hints.
2021-12-03 12:34:00 +01:00

85 lines
1.5 KiB
C

#ifndef EL__UTIL_MATH_H
#define EL__UTIL_MATH_H
#ifdef __cplusplus
extern "C" {
#endif
/* It's evil to include this directly, elinks.h includes it for you
* at the right time. */
/* These macros will evaluate twice their arguments.
* Ie. MIN(a+b, c+d) will do 3 additions...
* Please prefer to use int_min() and int_max() if possible. */
/* FreeBSD needs this. */
#ifdef MIN
#undef MIN
#endif
#ifdef MAX
#undef MAX
#endif
#define MIN(x, y) ((x) < (y) ? (x) : (y))
#define MAX(x, y) ((x) > (y) ? (x) : (y))
static inline int
int_min(int x, int y)
{
if (x < y) return x;
return y;
}
static inline int
int_max(int x, int y)
{
if (x > y) return x;
return y;
}
/** Limit @a what pointed value to upper bound @a limit. */
static inline void
int_upper_bound(int *what, int limit)
{
if (*what > limit) *what = limit;
}
/** Limit @a what pointed value to lower bound @a limit. */
static inline void
int_lower_bound(int *what, int limit)
{
if (*what < limit) *what = limit;
}
/** Limit @a what pointed value to lower bound @a lower_limit and to
* upper bound @a upper_limit. */
static inline void
int_bounds(int *what, int lower_limit,
int upper_limit)
{
if (*what < lower_limit)
*what = lower_limit;
else if (*what > upper_limit)
*what = upper_limit;
}
/** Swap values @a a and @a b, both of type @a type.
* This is supposed to evaluate at compile time, giving no performance hit. */
#define swap_values(type, a, b) \
do { \
type swap_register_ = (a); \
(a) = (b); \
(b) = (swap_register_); \
} while (0)
#ifdef __cplusplus
}
#endif
#endif