| 798 | } |
| 799 | |
| 800 | cs_error_t icmap_get_int8_r(const icmap_map_t map, const char *key_name, int8_t *i8) |
| 801 | { |
| 802 | |
| 803 | return (icmap_get_int_r(map, key_name, i8, ICMAP_VALUETYPE_INT8)); |
| 804 | } |
| 805 | |
| 806 | cs_error_t icmap_get_uint8_r(const icmap_map_t map, const char *key_name, uint8_t *u8) |
| 807 | { |
no test coverage detected