home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
jove-4.16-src.tgz
/
tar.out
/
bsd
/
jove
/
delete.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-09-28
|
1KB
|
34 lines
/************************************************************************
* This program is Copyright (C) 1986-1996 by Jonathan Payne. JOVE is *
* provided to you without charge, and with no warranty. You may give *
* away copies of JOVE, including sources, provided that this notice is *
* included in all the files. *
************************************************************************/
extern void
del_char proto((int dir,int num,bool OK_kill)),
reg_kill proto((LinePtr line2, int char2, bool dot_moved));
extern LinePtr
reg_delete proto((LinePtr line1,int char1,LinePtr line2,int char2));
/* kill buffer */
#define NUMKILLS 16 /* number of kills saved in the kill ring */
extern LinePtr killbuf[NUMKILLS];
extern int killptr; /* index of newest entry (if any) */
extern void DelKillRing proto((void)); /* delete newest entry */
/* Commands: */
extern void
CopyRegion proto((void)),
DelBlnkLines proto((void)),
DelNChar proto((void)),
DelNWord proto((void)),
DelPChar proto((void)),
DelPWord proto((void)),
DelReg proto((void)),
DelWtSpace proto((void));