mirror of
https://github.com/neovim/neovim.git
synced 2026-06-12 06:48:13 +00:00
Lua makes (or reuses) an internal copy of strings, so we can safely push buf pointers onto the stack.
13 lines
252 B
C
13 lines
252 B
C
#ifndef NVIM_API_BUFFER_H
|
|
#define NVIM_API_BUFFER_H
|
|
|
|
#include <lauxlib.h>
|
|
|
|
#include "nvim/api/private/defs.h"
|
|
#include "nvim/buffer_defs.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "api/buffer.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_API_BUFFER_H
|