blob: 2960501897df96ebb04ecfee80b68d7590aa2b85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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
|