1/* mark.c */
2int setmark __ARGS((int c));
3int setmark_pos __ARGS((int c, pos_T *pos, int fnum));
4void setpcmark __ARGS((void));
5void checkpcmark __ARGS((void));
6pos_T *movemark __ARGS((int count));
7pos_T *movechangelist __ARGS((int count));
8pos_T *getmark __ARGS((int c, int changefile));
9pos_T *getmark_fnum __ARGS((int c, int changefile, int *fnum));
10pos_T *getnextmark __ARGS((pos_T *startpos, int dir, int begin_line));
11void fmarks_check_names __ARGS((buf_T *buf));
12int check_mark __ARGS((pos_T *pos));
13void clrallmarks __ARGS((buf_T *buf));
14char_u *fm_getname __ARGS((fmark_T *fmark, int lead_len));
15void do_marks __ARGS((exarg_T *eap));
16void ex_delmarks __ARGS((exarg_T *eap));
17void ex_jumps __ARGS((exarg_T *eap));
18void ex_changes __ARGS((exarg_T *eap));
19void mark_adjust __ARGS((linenr_T line1, linenr_T line2, long amount, long amount_after));
20void mark_col_adjust __ARGS((linenr_T lnum, colnr_T mincol, long lnum_amount, long col_amount));
21void copy_jumplist __ARGS((win_T *from, win_T *to));
22void free_jumplist __ARGS((win_T *wp));
23void set_last_cursor __ARGS((win_T *win));
24void free_all_marks __ARGS((void));
25int read_viminfo_filemark __ARGS((vir_T *virp, int force));
26void write_viminfo_filemarks __ARGS((FILE *fp));
27int removable __ARGS((char_u *name));
28int write_viminfo_marks __ARGS((FILE *fp_out));
29void copy_viminfo_marks __ARGS((vir_T *virp, FILE *fp_out, int count, int eof, int flags));
30/* vim: set ft=c : */
31