| 671 | } |
| 672 | |
| 673 | cs_error_t cmap_get_uint8(cmap_handle_t handle, const char *key_name, uint8_t *u8) |
| 674 | { |
| 675 | |
| 676 | return (cmap_get_int(handle, key_name, u8, sizeof(*u8), CMAP_VALUETYPE_UINT8)); |
| 677 | } |
| 678 | |
| 679 | cs_error_t cmap_get_int16(cmap_handle_t handle, const char *key_name, int16_t *i16) |
| 680 | { |
no test coverage detected