Skip to content

Commit c3cdbb0

Browse files
committed
Remove unused path manipulation functions from C API
1 parent 02e67da commit c3cdbb0

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

binaryninjacore.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8287,17 +8287,12 @@ extern "C"
82878287
BINARYNINJACOREAPI bool BNDeleteDirectory(const char* path);
82888288
BINARYNINJACOREAPI bool BNCreateDirectory(const char* path, bool createSubdirectories);
82898289
BINARYNINJACOREAPI bool BNPathExists(const char* path);
8290-
BINARYNINJACOREAPI char* BNGetParentPath(const char* path);
82918290
BINARYNINJACOREAPI bool BNIsPathDirectory(const char* path);
82928291
BINARYNINJACOREAPI bool BNIsPathRegularFile(const char* path);
82938292
BINARYNINJACOREAPI bool BNFileSize(const char* path, uint64_t* size);
82948293
BINARYNINJACOREAPI bool BNRenameFile(const char* source, const char* dest);
82958294
BINARYNINJACOREAPI bool BNCopyFile(const char* source, const char* dest);
8296-
BINARYNINJACOREAPI char* BNGetFileName(const char* path);
8297-
BINARYNINJACOREAPI char* BNGetFileExtension(const char* path);
82988295
BINARYNINJACOREAPI char** BNGetFilePathsInDirectory(const char* path, size_t* count);
8299-
BINARYNINJACOREAPI char* BNAppendPath(const char* path, const char* part);
8300-
BINARYNINJACOREAPI void BNFreePath(char* path);
83018296
BINARYNINJACOREAPI char* BNGetSystemCacheDirectory();
83028297

83038298
// Settings APIs

0 commit comments

Comments
 (0)