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

  1. /*
  2.     sdgetpos.c
  3.  
  4.     % sed_GetPosition
  5.  
  6.     C-scape 3.2
  7.     Copyright (c) 1986, 1987, by Oakland Group, Inc.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Revision History:
  11.     -----------------
  12.     11/18/87 jmd    Changed name of file for consistency.
  13.      7/07/88 jmd    added windows
  14.      8/15/88 jmd    made work with new borders
  15.     11/15/88 jmd    made work with newest borders
  16.  
  17.      2/07/89 jmd    Removed bordobj.h
  18.  
  19.      3/28/90 jmd    ansi-fied
  20. */
  21.  
  22. #include "sed.h"
  23.  
  24. void sed_GetPosition(sed_type sed, int *rowmin, int *colmin)
  25. /*
  26.     effects:    returns the position of the sed into the
  27.                 locations pointed to by row and col.
  28.                 if there is a border (unfixed) then its position is returned
  29. */
  30. {
  31.     cs_Assert(sed_Ok(sed), CS_SD_GP_SED, 0);
  32.  
  33.     *rowmin = bord_GetTopRow(sed);
  34.     *colmin = bord_GetLeftCol(sed);
  35. }
  36.