File: marks.h

package info (click to toggle)
jove 4.17.5.5-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 2,476 kB
  • sloc: ansic: 29,235; makefile: 534; sh: 428; python: 45
file content (28 lines) | stat: -rw-r--r-- 1,049 bytes parent folder | download | duplicates (13)
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));