NOAA-CSL/NOAA_BBB_PRU_DAQ_Cape

MIN and MAX not used

Opened this issue · 0 comments

lo-co commented

The functions MIN and MAX are not used. These can either be removed or changed to preprocessor definitions like so:

#define MIN(a, b) ((a) < (b) ? (a) : (b))
#define MAX(a, b) ((a) > (b) ? (a) : (b))