From 92a0374d7b6b27cb91e51e5cfe735fbde100632c Mon Sep 17 00:00:00 2001 From: Thomas Wienecke Date: Mon, 3 Mar 2014 15:28:28 +0100 Subject: Rename and refactor mch_FullName. * Rename mch_FullName to mch_full_name to match the style guide. * Add mch_full_dir_name, which saves the absolute path of a given directory relative to cwd into a given buffer. * Add function append_path, which glues together two given paths with a slash. * Adapt moonscript coding style to the tests. --- src/os/os.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/os/os.h') diff --git a/src/os/os.h b/src/os/os.h index 9cf2116091..1ef311b32c 100644 --- a/src/os/os.h +++ b/src/os/os.h @@ -6,7 +6,7 @@ long_u mch_total_mem(int special); int mch_chdir(char *path); int mch_dirname(char_u *buf, int len); -int mch_FullName (char_u *fname, char_u *buf, int len, int force); -int mch_isFullName (char_u *fname); +int mch_full_name (char_u *fname, char_u *buf, int len, int force); +int mch_is_full_name (char_u *fname); #endif -- cgit