mirror of
https://github.com/neovim/neovim.git
synced 2026-01-23 13:43:24 +10:00
This is a squash of all commits sent to #81. - Remove unused undef of __ARGS. - Fix mch_rename declaration. - Follow changes related to moved & extracted files. - Properly indent function declarations of getchar.h and quickfix.c.
14 lines
338 B
C
14 lines
338 B
C
#ifndef NEOVIM_VERSION_H
|
|
#define NEOVIM_VERSION_H
|
|
/* version.c */
|
|
void make_version(void);
|
|
int highest_patch(void);
|
|
int has_patch(int n);
|
|
void ex_version(exarg_T *eap);
|
|
void list_version(void);
|
|
void maybe_intro_message(void);
|
|
void intro_message(int colon);
|
|
void ex_intro(exarg_T *eap);
|
|
/* vim: set ft=c : */
|
|
#endif /* NEOVIM_VERSION_H */
|