tbm-mcu/include/macros.h

5 lines
94 B
C
Raw Normal View History

2017-02-27 15:34:41 +00:00
#pragma once
#define min(x, y) ((x < y) ? (x) : (y))
#define max(x, y) ((x > y) ? (x) : (y))