Change prefix from os_* to path_*

This commit is contained in:
John Schmidt
2014-04-07 18:04:18 +02:00
committed by Thiago de Arruda
parent aa7218b646
commit 6fb58d1c5c
11 changed files with 47 additions and 47 deletions

View File

@@ -92,7 +92,7 @@ int match_suffix(char_u *fname);
///
/// @param directory Directory name, relative to current directory.
/// @return `FAIL` for failure, `OK` for success.
int os_full_dir_name(char *directory, char *buffer, int len);
int path_full_dir_name(char *directory, char *buffer, int len);
// Append to_append to path with a slash in between.
int append_path(char *path, const char *to_append, int max_len);
@@ -101,7 +101,7 @@ int append_path(char *path, const char *to_append, int max_len);
///
/// This just checks if the file name starts with '/' or '~'.
/// @return `TRUE` if "fname" is absolute.
int os_is_absolute_path(const char_u *fname);
int path_is_absolute_path(const char_u *fname);
/// Check if the given path represents an executable file.
///
@@ -111,6 +111,6 @@ int os_is_absolute_path(const char_u *fname);
/// - is absolute.
///
/// @return `FALSE` otherwise.
int os_can_exe(const char_u *name);
int path_can_exe(const char_u *name);
#endif