Loading...
Searching...
No Matches
Go to the documentation of this file.
15static inline signed int abs_i(
int x) {
16 return (x < 0) ? -x : x;
20static inline float abs_f(
float x) {
21 return (x < 0.0f) ? -x : x;
24#define ABS(x) _Generic((x) + 0, \