|
||
void clear_area ( int top, int left, int bottom, int right, int color )
int top; // top of area int left; // left side of area int bottom; // bottom of area int right; // right side of area int color; // color to use
|
|
Synopsis |
#include "silver.h"
The clear_area function clears the indicated area on the screen with the specified color.
|
Parameters |
The top , left , bottom and right parameters all specify character locations on the screen, with 1 <= top <= bottom <= schar_height , and 1 <= left <= right <= schar_width . The color parameter is a color number.
|
Return Value |
none
|
See Also |
|
|