| 1676 | } |
| 1677 | |
| 1678 | LfUIElementProps props_stack_peak(PropsStack* stack) { |
| 1679 | LF_ASSERT(stack.count != 0, "Stack is empty on stack data structure!"); |
| 1680 | return stack->data[stack->count - 1]; |
| 1681 | } |
| 1682 | |
| 1683 | bool props_stack_empty(PropsStack* stack) { |
| 1684 | return stack->count == 0; |