mirror of
https://github.com/neovim/neovim.git
synced 2025-10-06 01:46:29 +00:00
15 lines
428 B
C
15 lines
428 B
C
#pragma once
|
|
|
|
#include "nvim/ascii_defs.h"
|
|
#include "nvim/eval/typval_defs.h" // IWYU pragma: keep
|
|
#include "nvim/memline_defs.h" // IWYU pragma: export
|
|
#include "nvim/pos_defs.h" // IWYU pragma: keep
|
|
#include "nvim/types_defs.h" // IWYU pragma: keep
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "memline.h.generated.h"
|
|
#endif
|
|
|
|
/// LINEEMPTY() - return true if the line is empty
|
|
#define LINEEMPTY(p) (*ml_get(p) == NUL)
|