| 822 | } |
| 823 | |
| 824 | cs_error_t icmap_get_int32_r(const icmap_map_t map, const char *key_name, int32_t *i32) |
| 825 | { |
| 826 | |
| 827 | return (icmap_get_int_r(map, key_name, i32, ICMAP_VALUETYPE_INT32)); |
| 828 | } |
| 829 | |
| 830 | cs_error_t icmap_get_uint32_r(const icmap_map_t map, const char *key_name, uint32_t *u32) |
| 831 | { |
no test coverage detected