| 8 | #define UBOUNDED_MAX UINT32_MAX |
| 9 | |
| 10 | static inline ubounded bounded_max(ubounded x, ubounded y) { |
| 11 | return x <= y ? y : x; |
| 12 | } |
| 13 | |
| 14 | /* Returns min(x + y, UBOUNDED_MAX) */ |
| 15 | static inline ubounded bounded_add(ubounded x, ubounded y) { |
no outgoing calls
no test coverage detected