diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ueda/mclutils/bomstruct.h	Thu Feb 23 19:18:16 2017 +0000
@@ -0,0 +1,16 @@
+/*
+ * Structure definitions for tallied BOM generation
+ */
+
+struct refdeslist {
+	char	*first;
+	char	*last;
+	struct	refdeslist *next;
+};
+
+struct bompart {
+	struct	component *part;
+	int	qty;
+	struct	bompart *next;
+	struct	refdeslist *refdeslist;
+};