comparison ueda/mclutils/bomstruct.h @ 82:20c6f84c75e7

bomstruct.h factored out
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 23 Feb 2017 19:18:16 +0000
parents
children
comparison
equal deleted inserted replaced
81:6e43956e740d 82:20c6f84c75e7
1 /*
2 * Structure definitions for tallied BOM generation
3 */
4
5 struct refdeslist {
6 char *first;
7 char *last;
8 struct refdeslist *next;
9 };
10
11 struct bompart {
12 struct component *part;
13 int qty;
14 struct bompart *next;
15 struct refdeslist *refdeslist;
16 };