PER Firmware
Loading...
Searching...
No Matches
abs.h File Reference

Absolute value functions utility header. More...

Go to the source code of this file.

Macros

#define ABS(x)
 

Detailed Description

Absolute value functions utility header.

Typesafe, supporting ints and floats. Integer promotions also cover int8_t, int16_t

Author
Irving Wang (irvin.nosp@m.gw@p.nosp@m.urdue.nosp@m..edu)

Macro Definition Documentation

◆ ABS

#define ABS ( x)
Value:
_Generic((x) + 0, \
int: abs_i, \
float: abs_f \
)((x))