blob: c9dbc4ce9e79712b1c23bdead55f12953719bc94 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef NEOVIM_OS_SHELL_H
#define NEOVIM_OS_SHELL_H
#include <stdbool.h>
#include "types.h"
char ** shell_build_argv(char_u *cmd, char_u *extra_shell_arg);
void shell_free_argv(char **argv);
#endif // NEOVIM_OS_SHELL_H
|