| 25 | namespace LIEF::dsc::py { |
| 26 | |
| 27 | void init_utils(nb::module_& m) { |
| 28 | lief_mod->def("is_shared_cache", |
| 29 | [] (nb::PathLike path) { return is_shared_cache(path); }, |
| 30 | "Check if the given file is a dyld shared cache"_doc, |
| 31 | "file"_a |
| 32 | ); |
| 33 | } |
| 34 | } |
no test coverage detected