x = min(*x + 1, UBOUNDED_MAX) */
| 20 | |
| 21 | /* *x = min(*x + 1, UBOUNDED_MAX) */ |
| 22 | static inline void bounded_inc(ubounded* x) { |
| 23 | if (*x < UBOUNDED_MAX) (*x)++; |
| 24 | } |
| 25 | |
| 26 | /* 'pad(false, a, b)' computes the PADL(a, b) function. |
| 27 | * 'pad( true, a, b)' computes the PADR(a, b) function. |
no outgoing calls
no test coverage detected