| 689 | } |
| 690 | |
| 691 | cs_error_t cmap_get_int32(cmap_handle_t handle, const char *key_name, int32_t *i32) |
| 692 | { |
| 693 | |
| 694 | return (cmap_get_int(handle, key_name, i32, sizeof(*i32), CMAP_VALUETYPE_INT32)); |
| 695 | } |
| 696 | |
| 697 | cs_error_t cmap_get_uint32(cmap_handle_t handle, const char *key_name, uint32_t *u32) |
| 698 | { |
no test coverage detected