mirror of
https://github.com/neovim/neovim.git
synced 2025-10-03 08:28:34 +00:00

Change define guards from NEOVIM_XXX_H to NVIM_XXX_H: - Change header files. - Change clint correct guard name calculation.
17 lines
484 B
C
17 lines
484 B
C
#ifndef NVIM_MAIN_H
|
|
#define NVIM_MAIN_H
|
|
|
|
#include "nvim/normal.h"
|
|
|
|
void main_loop(int cmdwin, int noexmode);
|
|
void getout(int exitval);
|
|
int process_env(char_u *env, int is_viminit);
|
|
void mainerr_arg_missing(char_u *str);
|
|
void time_push(void *tv_rel, void *tv_start);
|
|
void time_pop(void *tp);
|
|
void time_msg(char *mesg, void *tv_start);
|
|
char_u *eval_client_expr_to_string(char_u *expr);
|
|
char_u *serverConvert(char_u *client_enc, char_u *data, char_u **tofree);
|
|
|
|
#endif /* NVIM_MAIN_H */
|