+/*****************************************************************************/
+/* Data */
+/*****************************************************************************/
+
+
+
+/* An empty collection */
+const Collection EmptyCollection = STATIC_COLLECTION_INITIALIZER;
+
+
+
/*****************************************************************************/
/* Code */
/*****************************************************************************/
void** Items; /* Array with dynamic size */
};
+/* An empty collection */
+extern const Collection EmptyCollection;
+
/* Initializer for static collections */
#define STATIC_COLLECTION_INITIALIZER { 0, 0, 0 }
+/* Initializer for auto collections */
+#define AUTO_COLLECTION_INITIALIZER EmptyCollection;
+
/*****************************************************************************/