mirror of
https://github.com/neovim/neovim.git
synced 2025-09-14 23:38:17 +00:00
15 lines
318 B
C
15 lines
318 B
C
#ifndef NEOVIM_VERSION_H
|
|
#define NEOVIM_VERSION_H
|
|
|
|
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
|