mirror of
https://github.com/neovim/neovim.git
synced 2025-09-30 06:58:35 +00:00
Extract garray.c from misc2.c
Start to split misc2.c in many other files (see #209).
This commit is contained in:

committed by
Thiago de Arruda

parent
79882bc7bd
commit
410f0a27c5
14
src/garray.h
Normal file
14
src/garray.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#ifndef NEOVIM_GARRAY_H
|
||||
#define NEOVIM_GARRAY_H
|
||||
|
||||
void ga_clear __ARGS((garray_T *gap));
|
||||
void ga_clear_strings __ARGS((garray_T *gap));
|
||||
void ga_init __ARGS((garray_T *gap));
|
||||
void ga_init2 __ARGS((garray_T *gap, int itemsize, int growsize));
|
||||
int ga_grow __ARGS((garray_T *gap, int n));
|
||||
char_u *ga_concat_strings __ARGS((garray_T *gap));
|
||||
void ga_concat __ARGS((garray_T *gap, char_u *s));
|
||||
void ga_append __ARGS((garray_T *gap, int c));
|
||||
void append_ga_line __ARGS((garray_T *gap));
|
||||
|
||||
#endif /* NEOVIM_GARRAY_H */
|
Reference in New Issue
Block a user