Root/
| 1 | /* |
| 2 | * kicad/delta.h - Find differences in .sch files |
| 3 | * |
| 4 | * Written 2016 by Werner Almesberger |
| 5 | * Copyright 2016 by Werner Almesberger |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | */ |
| 12 | |
| 13 | |
| 14 | #ifndef KICAD_DELTA_H |
| 15 | #define KICAD_DELTA_H |
| 16 | |
| 17 | #include "kicad/sch.h" |
| 18 | |
| 19 | |
| 20 | bool sheet_eq(const struct sheet *a, const struct sheet *b); |
| 21 | |
| 22 | void delta(const struct sheet *a, const struct sheet *b, |
| 23 | struct sheet *res_a, struct sheet *res_b, struct sheet *res_ab); |
| 24 | void delta_free(struct sheet *d); |
| 25 | |
| 26 | #endif /* !KICAD_DELTA_H */ |
| 27 |
Branches:
master
