home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QBasic & Borland Pascal & C
/
Delphi5.iso
/
C
/
Samples
/
CSAPE32.ARJ
/
SOURCE
/
CSSRC
/
SDINSROW.C
< prev
next >
Wrap
C/C++ Source or Header
|
1990-03-28
|
530b
|
33 lines
/*
sdinsrow.c 4/10/88
% sed_InsertRows
C-scape 3.2
Copyright (c) 1988, by Oakland Group, Inc.
ALL RIGHTS RESERVED.
Revision History:
-----------------
6/03/88 jmd removed fieldcount check
3/28/90 jmd ansi-fied
*/
#include "sed.h"
boolean sed_InsertRows(sed_type sed, int row, int count)
/*
Inserts count rows in the sed before row.
*/
{
boolean ret;
ret = menu_InsertRows(sed_GetMenu(sed), row, count);
/* adjust the cursor position */
sd_adjust_cur(sed);
return(ret);
}