| 834 | } |
| 835 | |
| 836 | cs_error_t icmap_get_int64_r(const icmap_map_t map, const char *key_name, int64_t *i64) |
| 837 | { |
| 838 | |
| 839 | return(icmap_get_int_r(map, key_name, i64, ICMAP_VALUETYPE_INT64)); |
| 840 | } |
| 841 | |
| 842 | cs_error_t icmap_get_uint64_r(const icmap_map_t map, const char *key_name, uint64_t *u64) |
| 843 | { |
no test coverage detected