forked from aniani/vim
Problem: Long version string cannot be translated. Solution: Build the string in init_longVersion().
12 lines
323 B
C
12 lines
323 B
C
/* version.c */
|
|
void init_longVersion(void);
|
|
int highest_patch(void);
|
|
int has_patch(int n);
|
|
void ex_version(exarg_T *eap);
|
|
void list_in_columns(char_u **items, int size, int current);
|
|
void list_version(void);
|
|
void maybe_intro_message(void);
|
|
void intro_message(int colon);
|
|
void ex_intro(exarg_T *eap);
|
|
/* vim: set ft=c : */
|