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 >
C/C++ Source or Header  |  1996-09-28  |  1KB  |  34 lines

  1. /************************************************************************
  2.  * This program is Copyright (C) 1986-1996 by Jonathan Payne.  JOVE is  *
  3.  * provided to you without charge, and with no warranty.  You may give  *
  4.  * away copies of JOVE, including sources, provided that this notice is *
  5.  * included in all the files.                                           *
  6.  ************************************************************************/
  7.  
  8. extern void
  9.     del_char proto((int dir,int num,bool OK_kill)),
  10.     reg_kill proto((LinePtr line2, int char2, bool dot_moved));
  11.  
  12. extern LinePtr
  13.     reg_delete proto((LinePtr line1,int char1,LinePtr line2,int char2));
  14.  
  15. /* kill buffer */
  16.  
  17. #define NUMKILLS    16    /* number of kills saved in the kill ring */
  18. extern LinePtr    killbuf[NUMKILLS];
  19. extern int    killptr;    /* index of newest entry (if any) */
  20.  
  21. extern void DelKillRing proto((void));    /* delete newest entry */
  22.  
  23. /* Commands: */
  24.  
  25. extern void
  26.     CopyRegion proto((void)),
  27.     DelBlnkLines proto((void)),
  28.     DelNChar proto((void)),
  29.     DelNWord proto((void)),
  30.     DelPChar proto((void)),
  31.     DelPWord proto((void)),
  32.     DelReg proto((void)),
  33.     DelWtSpace proto((void));
  34.