ref: 30cb9def10f532b54652938bf3fed34071fad30b
dir: /src/audiolib/util.h/
#ifndef AUDIOLIB__UTIL_H #define AUDIOLIB__UTIL_H #ifndef min #define min(a, b) ((a) < (b) ? (a) : (b)) #endif #ifndef max #define max(a, b) ((a) > (b) ? (a) : (b)) #endif #endif