| 701 | } |
| 702 | |
| 703 | cs_error_t cmap_get_int64(cmap_handle_t handle, const char *key_name, int64_t *i64) |
| 704 | { |
| 705 | |
| 706 | return (cmap_get_int(handle, key_name, i64, sizeof(*i64), CMAP_VALUETYPE_INT64)); |
| 707 | } |
| 708 | |
| 709 | cs_error_t cmap_get_uint64(cmap_handle_t handle, const char *key_name, uint64_t *u64) |
| 710 | { |
no test coverage detected