aboutsummaryrefslogtreecommitdiff
path: root/src/os/os.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/os/os.h')
-rw-r--r--src/os/os.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/os/os.h b/src/os/os.h
new file mode 100644
index 0000000000..9cf2116091
--- /dev/null
+++ b/src/os/os.h
@@ -0,0 +1,12 @@
+#ifndef NEOVIM_OS_H
+#define NEOVIM_OS_H
+
+#include "../vim.h"
+
+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);
+
+#endif