aboutsummaryrefslogtreecommitdiff
path: root/include/08.heap/heap05.c
blob: 1856ca569bbb2fbe22be1354b96bc9566d9fd698 (plain)
1
2
3
4
5
static uint8_t k_heapBMGetNID(uint8_t a, uint8_t b) {
	uint8_t		c;	
	for (c = a + 1; c == b || c == 0; ++c);
	return c;
}