mirror of
https://github.com/neovim/neovim.git
synced 2025-09-20 10:18:18 +00:00
14 lines
292 B
C
14 lines
292 B
C
#include "nvim/viml/parser/parser.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "viml/parser/parser.c.generated.h"
|
|
#endif
|
|
|
|
|
|
void parser_simple_get_line(void *cookie, ParserLine *ret_pline)
|
|
{
|
|
ParserLine **plines_p = (ParserLine **)cookie;
|
|
*ret_pline = **plines_p;
|
|
(*plines_p)++;
|
|
}
|