Files
neovim/src/nvim/ugrid.h
dundargoc 735aa4c4c8 refactor: remove redundant struct names
A struct can be anonymous if only its typedef is used.
2024-01-02 21:59:12 +01:00

29 lines
543 B
C

#pragma once
#include "nvim/types_defs.h"
typedef struct {
schar_T data;
sattr_T attr;
} UCell;
typedef struct {
int row, col;
int width, height;
UCell **cells;
} UGrid;
#define UGRID_FOREACH_CELL(grid, row, startcol, endcol, code) \
do { \
UCell *row_cells = (grid)->cells[row]; \
for (int curcol = startcol; curcol < endcol; curcol++) { \
UCell *cell = row_cells + curcol; \
(void)(cell); \
code; \
} \
} while (0)
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "ugrid.h.generated.h"
#endif