Index: trunk/src/rats_mincut.c =================================================================== --- trunk/src/rats_mincut.c (revision 931) +++ trunk/src/rats_mincut.c (revision 932) @@ -1,3 +1,38 @@ +/* $Id$ */ + +/* + * COPYRIGHT + * + * PCB, interactive printed circuit board design + * Copyright (C) 2013..2015 Tibor 'Igor2' Palinkas + * + * This module, rats.c, was written and is Copyright (C) 1997 by harry eaton + * this module is also subject to the GNU GPL as described below + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ + +/* Change History: + * Started 6/10/97 + * Added support for minimum length rat lines 6/13/97 + * rat lines to nearest line/via 8/29/98 + * support for netlist window 10/24/98 + */ + + #include "config.h" #include Index: trunk/src/rats_mincut.h =================================================================== --- trunk/src/rats_mincut.h (revision 931) +++ trunk/src/rats_mincut.h (revision 932) @@ -1,2 +1,36 @@ +/* $Id$ */ + +/* + * COPYRIGHT + * + * PCB, interactive printed circuit board design + * Copyright (C) 2013..2015 Tibor 'Igor2' Palinkas + * + * This module, rats.c, was written and is Copyright (C) 1997 by harry eaton + * this module is also subject to the GNU GPL as described below + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ + +/* Change History: + * Started 6/10/97 + * Added support for minimum length rat lines 6/13/97 + * rat lines to nearest line/via 8/29/98 + * support for netlist window 10/24/98 + */ + void rat_found_short(PinType *pin, PadType *pad, const char *with_net); void rat_proc_shorts(void);