Get the length of the array */
| 215 | |
| 216 | /* Get the length of the array */ |
| 217 | static inline uint32_t array_len(const array_t arr) { |
| 218 | return arr ? array_hdr(arr)->len : 0; |
| 219 | } |
| 220 | |
| 221 | #define ARR_CAP_NOSHRINK ((uint32_t)-1) |
| 222 | static inline void *array_trimm(array_t arr, uint32_t len, uint32_t cap) { |
no outgoing calls