From c3cdbb068e09f311e2a3d154327ba9640ce2f0d7 Mon Sep 17 00:00:00 2001 From: Mark Rowe Date: Wed, 27 May 2026 13:23:36 -0700 Subject: Remove unused path manipulation functions from C API --- binaryninjacore.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/binaryninjacore.h b/binaryninjacore.h index 178312b2..607c2ef4 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -8287,17 +8287,12 @@ extern "C" BINARYNINJACOREAPI bool BNDeleteDirectory(const char* path); BINARYNINJACOREAPI bool BNCreateDirectory(const char* path, bool createSubdirectories); BINARYNINJACOREAPI bool BNPathExists(const char* path); - BINARYNINJACOREAPI char* BNGetParentPath(const char* path); BINARYNINJACOREAPI bool BNIsPathDirectory(const char* path); BINARYNINJACOREAPI bool BNIsPathRegularFile(const char* path); BINARYNINJACOREAPI bool BNFileSize(const char* path, uint64_t* size); BINARYNINJACOREAPI bool BNRenameFile(const char* source, const char* dest); BINARYNINJACOREAPI bool BNCopyFile(const char* source, const char* dest); - BINARYNINJACOREAPI char* BNGetFileName(const char* path); - BINARYNINJACOREAPI char* BNGetFileExtension(const char* path); BINARYNINJACOREAPI char** BNGetFilePathsInDirectory(const char* path, size_t* count); - BINARYNINJACOREAPI char* BNAppendPath(const char* path, const char* part); - BINARYNINJACOREAPI void BNFreePath(char* path); BINARYNINJACOREAPI char* BNGetSystemCacheDirectory(); // Settings APIs -- cgit v1.3.1