| 683 | } |
| 684 | |
| 685 | cs_error_t cmap_get_uint16(cmap_handle_t handle, const char *key_name, uint16_t *u16) |
| 686 | { |
| 687 | |
| 688 | return (cmap_get_int(handle, key_name, u16, sizeof(*u16), CMAP_VALUETYPE_UINT16)); |
| 689 | } |
| 690 | |
| 691 | cs_error_t cmap_get_int32(cmap_handle_t handle, const char *key_name, int32_t *i32) |
| 692 | { |
no test coverage detected