home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / CSAPE32.ARJ / SOURCE / CSSRC / SDINSROW.C < prev    next >
C/C++ Source or Header  |  1990-03-28  |  530b  |  33 lines

  1. /*
  2.     sdinsrow.c     4/10/88
  3.  
  4.     % sed_InsertRows
  5.  
  6.     C-scape 3.2
  7.     Copyright (c) 1988, by Oakland Group, Inc.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Revision History:
  11.     -----------------
  12.      6/03/88 jmd    removed fieldcount check
  13.  
  14.      3/28/90 jmd    ansi-fied
  15. */
  16.  
  17. #include "sed.h"
  18.  
  19. boolean sed_InsertRows(sed_type sed, int row, int count)
  20. /*
  21.     Inserts count rows in the sed before row.
  22. */
  23. {
  24.     boolean ret;
  25.  
  26.     ret = menu_InsertRows(sed_GetMenu(sed), row, count);
  27.  
  28.     /* adjust the cursor position */
  29.     sd_adjust_cur(sed);
  30.  
  31.     return(ret);
  32. }
  33.