#include uint32_t uint32_min(uint32_t x,uint32_t y) { if (x < y) return x; return y; }