| 677 | } |
| 678 | |
| 679 | cs_error_t cmap_get_int16(cmap_handle_t handle, const char *key_name, int16_t *i16) |
| 680 | { |
| 681 | |
| 682 | return (cmap_get_int(handle, key_name, i16, sizeof(*i16), CMAP_VALUETYPE_INT16)); |
| 683 | } |
| 684 | |
| 685 | cs_error_t cmap_get_uint16(cmap_handle_t handle, const char *key_name, uint16_t *u16) |
| 686 | { |
no test coverage detected