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