aboutsummaryrefslogtreecommitdiff
path: root/src/path.h
diff options
context:
space:
mode:
authorJohn Schmidt <john.schmidt.h@gmail.com>2014-03-30 22:50:04 +0200
committerThiago de Arruda <tpadilha84@gmail.com>2014-04-01 08:08:07 -0300
commit7052b85192645086cdffd3baca56881f24cffe3f (patch)
treed8500c3a473a5db3913994374fe0d1856b5f0aa7 /src/path.h
parentf5082d0a708d08a9d71fa0f067a4e551ad533f2e (diff)
downloadrneovim-7052b85192645086cdffd3baca56881f24cffe3f.tar.gz
rneovim-7052b85192645086cdffd3baca56881f24cffe3f.tar.bz2
rneovim-7052b85192645086cdffd3baca56881f24cffe3f.zip
Move functions from window.c
Diffstat (limited to 'src/path.h')
-rw-r--r--src/path.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/path.h b/src/path.h
index a126d1a67e..49ce94dcdf 100644
--- a/src/path.h
+++ b/src/path.h
@@ -23,4 +23,11 @@ char_u *concat_str(char_u *str1, char_u *str2);
void add_pathsep(char_u *p);
char_u *FullName_save(char_u *fname, int force);
void simplify_filename(char_u *filename);
+char_u *find_file_name_in_path(char_u *ptr, int len, int options,
+ long count,
+ char_u *rel_fname);
+int path_is_url(char_u *p);
+int path_with_url(char_u *fname);
+int vim_isAbsName(char_u *name);
+int vim_FullName(char_u *fname, char_u *buf, int len, int force);
#endif