| 654 | } |
| 655 | |
| 656 | MMKV_EXPORT bool disableCompareBeforeSet(void *handle) { |
| 657 | MMKV *kv = static_cast<MMKV *>(handle); |
| 658 | if (kv) { |
| 659 | return kv->disableCompareBeforeSet(); |
| 660 | } |
| 661 | return false; |
| 662 | } |
| 663 | |
| 664 | MMKV_EXPORT bool isFileValid(const char *mmapID, const char *rootPath) { |
| 665 | if (rootPath) { |
nothing calls this directly
no test coverage detected