Conscience Core
utils.h
Go to the documentation of this file.
1 #ifndef MJPG_STREAMER_utils_H
2 #define MJPG_STREAMER_utils_H
3 
4 #define ABS(a) (((a) < 0) ? -(a) : (a))
5 #ifndef MIN
6 #define MIN(a, b) (((a) < (b)) ? (a) : (b))
7 #endif
8 #ifndef MAX
9 #define MAX(a, b) (((a) > (b)) ? (a) : (b))
10 #endif
11 #define LENGTH_OF(x) (sizeof(x)/sizeof(x[0]))
12 
13 #endif