From 87d509e4625df2d76a80f14cab3d420bd58ba20a Mon Sep 17 00:00:00 2001 From: sfan5 Date: Mon, 23 Jan 2023 00:19:30 +0100 Subject: Implement --debugger option to improve UX when debugging crashes (#13157) --- src/filesys.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/filesys.h') diff --git a/src/filesys.h b/src/filesys.h index a26fe28d6..fa9ddcaa8 100644 --- a/src/filesys.h +++ b/src/filesys.h @@ -60,6 +60,8 @@ bool IsPathAbsolute(const std::string &path); bool IsDir(const std::string &path); +bool IsExecutable(const std::string &path); + inline bool IsFile(const std::string &path) { return PathExists(path) && !IsDir(path); -- cgit v1.2.3