| 713 | } |
| 714 | |
| 715 | cs_error_t cmap_get_float(cmap_handle_t handle, const char *key_name, float *flt) |
| 716 | { |
| 717 | |
| 718 | return (cmap_get_int(handle, key_name, flt, sizeof(*flt), CMAP_VALUETYPE_FLOAT)); |
| 719 | } |
| 720 | |
| 721 | cs_error_t cmap_get_double(cmap_handle_t handle, const char *key_name, double *dbl) |
| 722 | { |
no test coverage detected