9 lines
157 B
C
9 lines
157 B
C
#pragma once
|
|
|
|
#ifndef pxl8_min
|
|
#define pxl8_min(a, b) ((a) < (b) ? (a) : (b))
|
|
#endif
|
|
|
|
#ifndef pxl8_max
|
|
#define pxl8_max(a, b) ((a) > (b) ? (a) : (b))
|
|
#endif
|