diff options
author | Thomas Wienecke <wienecke.t@gmail.com> | 2014-03-30 01:57:46 +0100 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-03 10:32:41 -0300 |
commit | 6d712defa52e58627aca5c875677d14d705300e8 (patch) | |
tree | 69516dc311b87cc7840f05d0a88259fe2094a465 /src/path.h | |
parent | 81237af70e7ac2d2277f428da87ca5fa7b16c8e1 (diff) | |
download | rneovim-6d712defa52e58627aca5c875677d14d705300e8.tar.gz rneovim-6d712defa52e58627aca5c875677d14d705300e8.tar.bz2 rneovim-6d712defa52e58627aca5c875677d14d705300e8.zip |
Refactor fullpathcmp -> path_full_compare.
Diffstat (limited to 'src/path.h')
-rw-r--r-- | src/path.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/path.h b/src/path.h index 5802128db5..e4acfa62b2 100644 --- a/src/path.h +++ b/src/path.h @@ -1,7 +1,7 @@ #ifndef NEOVIM_PATH_H #define NEOVIM_PATH_H -/// Return value for the comparison of two files. Also @see fullpathcmp. +/// Return value for the comparison of two files. Also @see path_full_compare. typedef enum file_comparison { FPC_SAME = 1, ///< Both exist and are the same file. FPC_DIFF = 2, ///< Both exist and are different files. @@ -17,7 +17,7 @@ typedef enum file_comparison { /// @param s2 Second file name. /// @param checkname When both files don't exist, only compare their names. /// @return Enum of type FileComparison. @see FileComparison. -FileComparison fullpathcmp(char_u *s1, char_u *s2, int checkname); +FileComparison path_full_compare(char_u *s1, char_u *s2, int checkname); int vim_ispathsep(int c); int vim_ispathsep_nocolon(int c); |