blob: 9da8c3e6e188667c454ce599002597dcaa4eef01 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* buffer.c */
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002extern int open_buffer __ARGS((int read_stdin, exarg_T *eap));
3extern int buf_valid __ARGS((buf_T *buf));
4extern void close_buffer __ARGS((win_T *win, buf_T *buf, int action));
5extern void buf_clear_file __ARGS((buf_T *buf));
6extern void buf_freeall __ARGS((buf_T *buf, int del_buf, int wipe_buf));
7extern void goto_buffer __ARGS((exarg_T *eap, int start, int dir, int count));
8extern void handle_swap_exists __ARGS((buf_T *old_curbuf));
9extern char_u *do_bufdel __ARGS((int command, char_u *arg, int addr_count, int start_bnr, int end_bnr, int forceit));
10extern int do_buffer __ARGS((int action, int start, int dir, int count, int forceit));
11extern void set_curbuf __ARGS((buf_T *buf, int action));
12extern void enter_buffer __ARGS((buf_T *buf));
13extern buf_T *buflist_new __ARGS((char_u *ffname, char_u *sfname, linenr_T lnum, int flags));
14extern void free_buf_options __ARGS((buf_T *buf, int free_p_ff));
15extern int buflist_getfile __ARGS((int n, linenr_T lnum, int options, int forceit));
16extern void buflist_getfpos __ARGS((void));
17extern buf_T *buflist_findname_exp __ARGS((char_u *fname));
18extern buf_T *buflist_findname __ARGS((char_u *ffname));
19extern int buflist_findpat __ARGS((char_u *pattern, char_u *pattern_end, int unlisted, int diffmode));
20extern int ExpandBufnames __ARGS((char_u *pat, int *num_file, char_u ***file, int options));
21extern buf_T *buflist_findnr __ARGS((int nr));
22extern char_u *buflist_nr2name __ARGS((int n, int fullname, int helptail));
23extern void get_winopts __ARGS((buf_T *buf));
24extern pos_T *buflist_findfpos __ARGS((buf_T *buf));
25extern linenr_T buflist_findlnum __ARGS((buf_T *buf));
26extern void buflist_list __ARGS((exarg_T *eap));
27extern int buflist_name_nr __ARGS((int fnum, char_u **fname, linenr_T *lnum));
28extern int setfname __ARGS((buf_T *buf, char_u *ffname, char_u *sfname, int message));
29extern void buf_set_name __ARGS((int fnum, char_u *name));
30extern void buf_name_changed __ARGS((buf_T *buf));
31extern buf_T *setaltfname __ARGS((char_u *ffname, char_u *sfname, linenr_T lnum));
32extern char_u *getaltfname __ARGS((int errmsg));
33extern int buflist_add __ARGS((char_u *fname, int flags));
34extern void buflist_slash_adjust __ARGS((void));
35extern void buflist_altfpos __ARGS((void));
36extern int otherfile __ARGS((char_u *ffname));
37extern void buf_setino __ARGS((buf_T *buf));
38extern void fileinfo __ARGS((int fullname, int shorthelp, int dont_truncate));
39extern void col_print __ARGS((char_u *buf, int col, int vcol));
40extern void maketitle __ARGS((void));
41extern void resettitle __ARGS((void));
42extern void free_titles __ARGS((void));
43extern int build_stl_str_hl __ARGS((win_T *wp, char_u *out, size_t outlen, char_u *fmt, int use_sandbox, int fillchar, int maxwidth, struct stl_hlrec *hltab, struct stl_hlrec *tabtab));
44extern void get_rel_pos __ARGS((win_T *wp, char_u *str));
45extern int append_arg_number __ARGS((win_T *wp, char_u *buf, int add_file, int maxlen));
46extern char_u *fix_fname __ARGS((char_u *fname));
47extern void fname_expand __ARGS((buf_T *buf, char_u **ffname, char_u **sfname));
48extern char_u *alist_name __ARGS((aentry_T *aep));
49extern void do_arg_all __ARGS((int count, int forceit, int keep_tabs));
50extern void ex_buffer_all __ARGS((exarg_T *eap));
51extern void do_modelines __ARGS((int flags));
52extern int read_viminfo_bufferlist __ARGS((vir_T *virp, int writing));
53extern void write_viminfo_bufferlist __ARGS((FILE *fp));
54extern char *buf_spname __ARGS((buf_T *buf));
55extern void buf_addsign __ARGS((buf_T *buf, int id, linenr_T lnum, int typenr));
56extern int buf_change_sign_type __ARGS((buf_T *buf, int markId, int typenr));
57extern int_u buf_getsigntype __ARGS((buf_T *buf, linenr_T lnum, int type));
58extern linenr_T buf_delsign __ARGS((buf_T *buf, int id));
59extern int buf_findsign __ARGS((buf_T *buf, int id));
60extern int buf_findsign_id __ARGS((buf_T *buf, linenr_T lnum));
61extern int buf_findsigntype_id __ARGS((buf_T *buf, linenr_T lnum, int typenr));
62extern int buf_signcount __ARGS((buf_T *buf, linenr_T lnum));
63extern void buf_delete_all_signs __ARGS((void));
64extern void sign_list_placed __ARGS((buf_T *rbuf));
65extern void sign_mark_adjust __ARGS((linenr_T line1, linenr_T line2, long amount, long amount_after));
66extern void set_buflisted __ARGS((int on));
67extern int buf_contents_changed __ARGS((buf_T *buf));
68extern void wipe_buffer __ARGS((buf_T *buf, int aucmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +000069/* vim: set ft=c : */