blob: 90e11d2bb14f5f8cb23c799099672feedd87d0df [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* undo.c */
Bram Moolenaar9db58062010-05-29 20:33:07 +02002void u_check __ARGS((int newhead_may_be_NULL));
Bram Moolenaar8bc78472007-05-06 12:26:25 +00003int u_save_cursor __ARGS((void));
4int u_save __ARGS((linenr_T top, linenr_T bot));
5int u_savesub __ARGS((linenr_T lnum));
6int u_inssub __ARGS((linenr_T lnum));
7int u_savedel __ARGS((linenr_T lnum, long nlines));
8int undo_allowed __ARGS((void));
Bram Moolenaar55debbe2010-05-23 23:34:36 +02009void u_compute_hash __ARGS((char_u *hash));
10void u_read_undo __ARGS((char_u *name, char_u *hash));
11void u_write_undo __ARGS((char_u *name, int forceit, buf_T *buf, char_u *hash));
Bram Moolenaar8bc78472007-05-06 12:26:25 +000012void u_undo __ARGS((int count));
13void u_redo __ARGS((int count));
14void undo_time __ARGS((long step, int sec, int absolute));
15void u_sync __ARGS((int force));
16void ex_undolist __ARGS((exarg_T *eap));
17void ex_undojoin __ARGS((exarg_T *eap));
18void u_unchanged __ARGS((buf_T *buf));
19void u_clearall __ARGS((buf_T *buf));
20void u_saveline __ARGS((linenr_T lnum));
21void u_clearline __ARGS((void));
22void u_undoline __ARGS((void));
23void u_blockfree __ARGS((buf_T *buf));
24int bufIsChanged __ARGS((buf_T *buf));
25int curbufIsChanged __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +000026/* vim: set ft=c : */