mirror of
https://github.com/neovim/neovim.git
synced 2025-10-17 07:16:09 +00:00

Change define guards from NEOVIM_XXX_H to NVIM_XXX_H: - Change header files. - Change clint correct guard name calculation.
13 lines
296 B
C
13 lines
296 B
C
#ifndef NVIM_DIGRAPH_H
|
|
#define NVIM_DIGRAPH_H
|
|
|
|
int do_digraph(int c);
|
|
int get_digraph(int cmdline);
|
|
int getdigraph(int char1, int char2, int meta_char);
|
|
void putdigraph(char_u *str);
|
|
void listdigraphs(void);
|
|
char_u *keymap_init(void);
|
|
void ex_loadkeymap(exarg_T *eap);
|
|
|
|
#endif // NVIM_DIGRAPH_H
|