14 lines
185 B
C
14 lines
185 B
C
|
#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
|
||
|
|