1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
/**************************************************************************
* This program is Copyright (C) 1986-2002 by Jonathan Payne. JOVE is *
* provided by Jonathan and Jovehacks without charge and without *
* warranty. You may copy, modify, and/or distribute JOVE, provided that *
* this notice is included in all the source files and documentation. *
**************************************************************************/
extern void
AllMarkReset proto((Buffer *b,LinePtr line)),
DFixMarks proto((LinePtr line1,int char1,LinePtr line2,int char2)),
DelMark proto((Mark *m)),
IFixMarks proto((LinePtr line1, int char1, LinePtr line2, int char2)),
MarkSet proto((Mark *m, LinePtr line, int column)),
ToMark proto((Mark *m)),
flush_marks proto((Buffer *)),
do_set_mark proto((LinePtr l, int c)),
set_mark proto((void));
extern Mark
*CurMark proto((void)),
*MakeMark proto((LinePtr line,int column));
/* Commands: */
extern void
PopMark proto((void)),
ExchPtMark proto((void)),
SetMark proto((void));
|