tbm-mcu/include/macros.h

4 lines
94 B
C

#pragma once
#define min(x, y) ((x < y) ? (x) : (y))
#define max(x, y) ((x > y) ? (x) : (y))