diff options
author | John Schmidt <john.schmidt.h@gmail.com> | 2014-03-31 00:39:52 +0200 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-01 08:08:07 -0300 |
commit | 2a6df95fb533fd451b9b13ec15ae8c1437e048ca (patch) | |
tree | 63bc4591a4be6e9846a04e6c9530216544b668a3 /src/path.h | |
parent | e29e9563480946e13252f5aea6a9d137c9483a61 (diff) | |
download | rneovim-2a6df95fb533fd451b9b13ec15ae8c1437e048ca.tar.gz rneovim-2a6df95fb533fd451b9b13ec15ae8c1437e048ca.tar.bz2 rneovim-2a6df95fb533fd451b9b13ec15ae8c1437e048ca.zip |
Move same_directory from misc2.c
Diffstat (limited to 'src/path.h')
-rw-r--r-- | src/path.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/path.h b/src/path.h index 3a5384fbb1..6ccbab9c40 100644 --- a/src/path.h +++ b/src/path.h @@ -32,4 +32,5 @@ int vim_isAbsName(char_u *name); int vim_FullName(char_u *fname, char_u *buf, int len, int force); char_u *fix_fname(char_u *fname); int after_pathsep(char_u *b, char_u *p); +int same_directory(char_u *f1, char_u *f2); #endif |