From f650248764bd9581d40527b207259c2ae11cbcfd Mon Sep 17 00:00:00 2001 From: "R. Timothy Edwards" Date: Tue, 9 Jun 2026 16:17:57 -0400 Subject: [PATCH] Revised the code of PR #487 (previous merge) to follow the formatting used for other subroutines. --- database/DBbound.c | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/database/DBbound.c b/database/DBbound.c index 351b8d7f..d37e1d90 100644 --- a/database/DBbound.c +++ b/database/DBbound.c @@ -53,7 +53,10 @@ typedef struct dbcellboundstruct */ int -DBBoundCellPlane(CellDef *def, Rect *extended, Rect *rect) +DBBoundCellPlane( + CellDef *def, + Rect *extended, + Rect *rect) { TreeFilter filter; DBCellBoundStruct cbs; @@ -76,7 +79,9 @@ DBBoundCellPlane(CellDef *def, Rect *extended, Rect *rect) } int -dbCellBoundFunc(CellUse *use, TreeFilter *fp) +dbCellBoundFunc( + CellUse *use, + TreeFilter *fp) { DBCellBoundStruct *cbs; @@ -119,7 +124,9 @@ dbCellBoundFunc(CellUse *use, TreeFilter *fp) */ bool -DBBoundPlane(Plane *plane, Rect *rect) +DBBoundPlane( + Plane *plane, + Rect *rect) { Tile *left, *right, *top, *bottom, *tp; @@ -198,7 +205,9 @@ DBBoundPlane(Plane *plane, Rect *rect) */ bool -DBBoundPlaneVert(Plane *plane, Rect *rect) +DBBoundPlaneVert( + Plane *plane, + Rect *rect) { Tile *left, *right, *top, *bottom, *tp;