aboutsummaryrefslogtreecommitdiff
path: root/src/path.h
diff options
context:
space:
mode:
authorJohn Schmidt <john.schmidt.h@gmail.com>2014-04-08 17:50:10 +0200
committerThiago de Arruda <tpadilha84@gmail.com>2014-04-08 21:56:05 -0300
commitac620411383259400cff2f12ffe576f066ed4ca7 (patch)
treea32272ff4afae8f7ef39f5ed94260c85a1eb92e7 /src/path.h
parent6fb58d1c5c859402871e1d546f7fea1a91dd2995 (diff)
downloadrneovim-ac620411383259400cff2f12ffe576f066ed4ca7.tar.gz
rneovim-ac620411383259400cff2f12ffe576f066ed4ca7.tar.bz2
rneovim-ac620411383259400cff2f12ffe576f066ed4ca7.zip
Move exe functions back to os/fs.c
Diffstat (limited to 'src/path.h')
-rw-r--r--src/path.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/path.h b/src/path.h
index cb0a8b958f..295b0ebbd8 100644
--- a/src/path.h
+++ b/src/path.h
@@ -103,14 +103,4 @@ int append_path(char *path, const char *to_append, int max_len);
/// @return `TRUE` if "fname" is absolute.
int path_is_absolute_path(const char_u *fname);
-/// Check if the given path represents an executable file.
-///
-/// @return `TRUE` if `name` is executable and
-/// - can be found in $PATH,
-/// - is relative to current dir or
-/// - is absolute.
-///
-/// @return `FALSE` otherwise.
-int path_can_exe(const char_u *name);
-
#endif