home *** CD-ROM | disk | FTP | other *** search
- /*
- sdgetbhw.c
-
- % sed_GetBorderHeight, sed_GetBorderWidth
-
- C-scape 3.2
- Copyright (c) 1988, by Oakland Group, Inc.
- ALL RIGHTS RESERVED.
-
- Revision History:
- -----------------
- 12/17/88 jmd turned into functions
- 3/28/90 jmd ansi-fied
- */
-
- #include "sed.h"
-
- int sed_GetBorderHeight(sed_type sed)
- /*
- Returns the height of the sed (including the border).
- */
- {
- return(bord_GetHeight(sed));
- }
-
- int sed_GetBorderWidth(sed_type sed)
- /*
- Returns the width of the sed (including the border).
- */
- {
- return(bord_GetWidth(sed));
- }
-
-