blob: 099f53312fff89b55938456d3451d41e03fec537 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#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);
#endif
|