Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 4 additions & 13 deletions database/DBbound.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,7 @@ typedef struct dbcellboundstruct
*/

int
DBBoundCellPlane(def, extended, rect)
CellDef *def;
Rect *extended;
Rect *rect;
DBBoundCellPlane(CellDef *def, Rect *extended, Rect *rect)
{
TreeFilter filter;
DBCellBoundStruct cbs;
Expand All @@ -79,9 +76,7 @@ DBBoundCellPlane(def, extended, rect)
}

int
dbCellBoundFunc(use, fp)
CellUse *use;
TreeFilter *fp;
dbCellBoundFunc(CellUse *use, TreeFilter *fp)
{
DBCellBoundStruct *cbs;

Expand Down Expand Up @@ -124,9 +119,7 @@ dbCellBoundFunc(use, fp)
*/

bool
DBBoundPlane(plane, rect)
Plane *plane;
Rect *rect;
DBBoundPlane(Plane *plane, Rect *rect)
{
Tile *left, *right, *top, *bottom, *tp;

Expand Down Expand Up @@ -205,9 +198,7 @@ DBBoundPlane(plane, rect)
*/

bool
DBBoundPlaneVert(plane, rect)
Plane *plane;
Rect *rect;
DBBoundPlaneVert(Plane *plane, Rect *rect)
{
Tile *left, *right, *top, *bottom, *tp;

Expand Down