| 846 | } |
| 847 | |
| 848 | cs_error_t icmap_get_float_r(const icmap_map_t map, const char *key_name, float *flt) |
| 849 | { |
| 850 | |
| 851 | return (icmap_get_int_r(map, key_name, flt, ICMAP_VALUETYPE_FLOAT)); |
| 852 | } |
| 853 | |
| 854 | cs_error_t icmap_get_double_r(const icmap_map_t map, const char *key_name, double *dbl) |
| 855 | { |
no test coverage detected