home *** CD-ROM | disk | FTP | other *** search
- /*
- 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);
- }
-