1#ifndef DEFINE_FUNC_ATTRIBUTES
2# define DEFINE_FUNC_ATTRIBUTES
3#endif
4#include "nvim/func_attr.h"
5#undef DEFINE_FUNC_ATTRIBUTES
6int qf_init(win_T *wp, char_u *efile, char_u *errorformat, int newlist, char_u *qf_title, char_u *enc);
7void qf_free_all(win_T *wp);
8void copy_loclist(win_T *from, win_T *to);
9void qf_jump(qf_info_T *qi, int dir, int errornr, int forceit);
10void qf_list(exarg_T *eap);
11void qf_age(exarg_T *eap);
12void qf_history(exarg_T *eap);
13_Bool qf_mark_adjust(win_T *wp, linenr_T line1, linenr_T line2, long amount, long amount_after);
14void qf_view_result(_Bool split);
15void ex_cwindow(exarg_T *eap);
16void ex_cclose(exarg_T *eap);
17void ex_copen(exarg_T *eap);
18void ex_cbottom(exarg_T *eap);
19linenr_T qf_current_entry(win_T *wp);
20int grep_internal(cmdidx_T cmdidx);
21void ex_make(exarg_T *eap);
22size_t qf_get_size(exarg_T *eap) FUNC_ATTR_NONNULL_ALL;
23size_t qf_get_cur_idx(exarg_T *eap) FUNC_ATTR_NONNULL_ALL;
24int qf_get_cur_valid_idx(exarg_T *eap) FUNC_ATTR_NONNULL_ALL;
25void ex_cc(exarg_T *eap);
26void ex_cnext(exarg_T *eap);
27void ex_cfile(exarg_T *eap);
28void ex_vimgrep(exarg_T *eap);
29int get_errorlist(const qf_info_T *qi_arg, win_T *wp, int qf_idx, list_T *list);
30int qf_get_properties(win_T *wp, dict_T *what, dict_T *retdict);
31int set_errorlist(win_T *wp, list_T *list, int action, char_u *title, dict_T *what);
32_Bool set_ref_in_quickfix(int copyID);
33void ex_cbuffer(exarg_T *eap);
34void ex_cexpr(exarg_T *eap);
35void ex_helpgrep(exarg_T *eap);
36#include "nvim/func_attr.h"
37