* INLINE IMPLEMENTATIONS * **********************************************************************************************/
| 216 | * INLINE IMPLEMENTATIONS * |
| 217 | **********************************************************************************************/ |
| 218 | static inline void *cbfs_alloc(const char *name, cbfs_allocator_t allocator, void *arg, |
| 219 | size_t *size_out) |
| 220 | { |
| 221 | return cbfs_type_alloc(name, allocator, arg, size_out, NULL); |
| 222 | } |
| 223 | |
| 224 | static inline void *cbfs_ro_alloc(const char *name, cbfs_allocator_t allocator, void *arg, |
| 225 | size_t *size_out) |
no test coverage detected