mirror of
https://github.com/neovim/neovim.git
synced 2025-09-19 09:48:19 +00:00
17 lines
453 B
C
17 lines
453 B
C
// This is an open source non-commercial project. Dear PVS-Studio, please check
|
|
// it. PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
|
|
|
|
#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)++;
|
|
}
|