#pragma once #ifndef __RS_MIN_H__ #define __RS_MIN_H__ #define redshift_max(x, y) (((x) > (y)) ? (x) : (y)) #define redshift_min(x, y) (((x) < (y)) ? (x) : (y)) #endif