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

  1. /*
  2.     sdgetbhw.c
  3.  
  4.     % sed_GetBorderHeight, sed_GetBorderWidth
  5.  
  6.     C-scape 3.2
  7.     Copyright (c) 1988, by Oakland Group, Inc.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Revision History:
  11.     -----------------
  12.     12/17/88 jmd    turned into functions
  13.      3/28/90 jmd    ansi-fied
  14. */
  15.  
  16. #include "sed.h"
  17.  
  18. int sed_GetBorderHeight(sed_type sed)
  19. /*
  20.     Returns the height of the sed (including the border).
  21. */
  22. {
  23.     return(bord_GetHeight(sed));
  24. }
  25.  
  26. int sed_GetBorderWidth(sed_type sed)
  27. /*
  28.     Returns the width of the sed (including the border).
  29. */
  30. {
  31.     return(bord_GetWidth(sed));
  32. }
  33.  
  34.