home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QBasic & Borland Pascal & C
/
Delphi5.iso
/
C
/
Samples
/
CSAPE32.ARJ
/
SOURCE
/
CSSRC
/
SDCENTER.C
< prev
next >
Wrap
C/C++ Source or Header
|
1990-03-28
|
526b
|
31 lines
/*
sdcenter.c
% sed_Center
5/10/89 by gam
C-scape 3.2
Copyright (c) 1989, by Oakland Group, Inc.
ALL RIGHTS RESERVED.
Revision History:
-----------------
5/18/89 gam Removed extra call to sed_GetWidth
3/28/90 jmd ansi-fied
*/
#include "sed.h"
void sed_Center(sed_type sed)
/*
Center a sed on the display
*/
{
/* Get the sed width, height */
sed_SetPosition(sed, (disp_GetHeight() - sed_GetBorderHeight(sed)) / 2,
(disp_GetWidth() - sed_GetBorderWidth(sed)) / 2);
}