| 665 | } |
| 666 | |
| 667 | cs_error_t cmap_get_int8(cmap_handle_t handle, const char *key_name, int8_t *i8) |
| 668 | { |
| 669 | |
| 670 | return (cmap_get_int(handle, key_name, i8, sizeof(*i8), CMAP_VALUETYPE_INT8)); |
| 671 | } |
| 672 | |
| 673 | cs_error_t cmap_get_uint8(cmap_handle_t handle, const char *key_name, uint8_t *u8) |
| 674 | { |
no test coverage detected