1#ifndef DEFINE_FUNC_ATTRIBUTES
2# define DEFINE_FUNC_ATTRIBUTES
3#endif
4#include "nvim/func_attr.h"
5#undef DEFINE_FUNC_ATTRIBUTES
6void reset_cursorline(void);
7void redraw_for_cursorline(win_T *wp) FUNC_ATTR_NONNULL_ALL;
8void update_topline_redraw(void);
9void update_topline(void);
10void update_topline_win(win_T *win);
11void update_curswant(void);
12void check_cursor_moved(win_T *wp);
13void changed_window_setting(void);
14void changed_window_setting_win(win_T *wp);
15void set_topline(win_T *wp, linenr_T lnum);
16void changed_cline_bef_curs(void);
17void changed_cline_bef_curs_win(win_T *wp);
18void changed_line_abv_curs(void);
19void changed_line_abv_curs_win(win_T *wp);
20void validate_botline(void);
21void invalidate_botline(void);
22void invalidate_botline_win(win_T *wp);
23void approximate_botline_win(win_T *wp);
24int cursor_valid(void);
25void validate_cursor(void);
26void validate_virtcol(void);
27void validate_virtcol_win(win_T *wp);
28void validate_cursor_col(void);
29int win_col_off(win_T *wp);
30int curwin_col_off(void);
31int win_col_off2(win_T *wp);
32int curwin_col_off2(void);
33void curs_columns(int may_scroll );
34void textpos2screenpos(win_T *wp, pos_T *pos, int *rowp, int *scolp, int *ccolp, int *ecolp, _Bool local);
35void scrolldown(long line_count, int byfold );
36void scrollup(long line_count, int byfold );
37void check_topfill(win_T *wp, _Bool down );
38void scrolldown_clamp(void);
39void scrollup_clamp(void);
40void scroll_cursor_top(int min_scroll, int always);
41void set_empty_rows(win_T *wp, int used);
42void scroll_cursor_bot(int min_scroll, int set_topbot);
43void scroll_cursor_halfway(int atend);
44void cursor_correct(void);
45int onepage(Direction dir, long count);
46void halfpage(_Bool flag, linenr_T Prenum);
47void do_check_cursorbind(void);
48#include "nvim/func_attr.h"
49