remove $Id$, it doesn't work with git anyway
[libfirm] / include / libfirm / adt / cpset.h
index 00ccbe3..856e32e 100644 (file)
  * @date    16.03.2007
  * @brief   a set of pointers with a custom compare function
  * @author  Matthias Braun
- * @version $Id$
  */
 #ifndef FIRM_ADT_CPSET_H
 #define FIRM_ADT_CPSET_H
 
+#include "../begin.h"
+
 /**
  * The type of a cpset compare function.
  *
@@ -60,20 +61,22 @@ typedef struct cpset_iterator_t cpset_iterator_t;
 /**
  * Initializes a cpset
  *
- * @param cpset        Pointer to allocated space for the cpset
- * @param cmp_function The compare function to use
+ * @param cpset           Pointer to allocated space for the cpset
+ * @param hash_function   The hash function to use
+ * @param cmp_function    The compare function to use
  */
-void cpset_init(cpset_t *cpset, cpset_hash_function hash_function,
+FIRM_API void cpset_init(cpset_t *cpset, cpset_hash_function hash_function,
                 cpset_cmp_function cmp_function);
 
 /**
  * Initializes a cpset
  *
- * @param cpset               Pointer to allocated space for the cpset
- * @param cmp_function        The compare function to use
- * @param expected_elements   Number of elements expected in the cpset (roughly)
+ * @param cpset              Pointer to allocated space for the cpset
+ * @param hash_function      The hash function to use
+ * @param cmp_function       The compare function to use
+ * @param expected_elements  Number of elements expected in the cpset (roughly)
  */
-void cpset_init_size(cpset_t *cpset, cpset_hash_function hash_function,
+FIRM_API void cpset_init_size(cpset_t *cpset, cpset_hash_function hash_function,
                      cpset_cmp_function cmp_function,
                      size_t expected_elements);
 
@@ -83,7 +86,7 @@ void cpset_init_size(cpset_t *cpset, cpset_hash_function hash_function,
  *
  * @param cpset   Pointer to the cpset
  */
-void cpset_destroy(cpset_t *cpset);
+FIRM_API void cpset_destroy(cpset_t *cpset);
 
 /**
  * Inserts an element into a cpset.
@@ -92,7 +95,7 @@ void cpset_destroy(cpset_t *cpset);
  * @param obj     Element to insert into the cpset
  * @returns       The element itself or a pointer to an existing element
  */
-void* cpset_insert(cpset_t *cpset, void *obj);
+FIRM_API void* cpset_insert(cpset_t *cpset, void *obj);
 
 /**
  * Removes an element from a cpset. Does nothing if the cpset doesn't contain the
@@ -101,7 +104,7 @@ void* cpset_insert(cpset_t *cpset, void *obj);
  * @param cpset   Pointer to the cpset
  * @param obj     Pointer to remove from the cpset
  */
-void cpset_remove(cpset_t *cpset, const void *obj);
+FIRM_API void cpset_remove(cpset_t *cpset, const void *obj);
 
 /**
  * Tests whether a cpset contains a pointer
@@ -110,7 +113,7 @@ void cpset_remove(cpset_t *cpset, const void *obj);
  * @param obj     The pointer to find
  * @returns       An equivalent object to @p obj or NULL
  */
-void *cpset_find(const cpset_t *cpset, const void *obj);
+FIRM_API void *cpset_find(const cpset_t *cpset, const void *obj);
 
 /**
  * Returns the number of pointers contained in the cpset
@@ -118,7 +121,7 @@ void *cpset_find(const cpset_t *cpset, const void *obj);
  * @param cpset   Pointer to the cpset
  * @returns       Number of pointers contained in the cpset
  */
-size_t cpset_size(const cpset_t *cpset);
+FIRM_API size_t cpset_size(const cpset_t *cpset);
 
 /**
  * Initializes a cpset iterator. Sets the iterator before the first element in
@@ -127,7 +130,7 @@ size_t cpset_size(const cpset_t *cpset);
  * @param iterator   Pointer to already allocated iterator memory
  * @param cpset       Pointer to the cpset
  */
-void cpset_iterator_init(cpset_iterator_t *iterator, const cpset_t *cpset);
+FIRM_API void cpset_iterator_init(cpset_iterator_t *iterator, const cpset_t *cpset);
 
 /**
  * Advances the iterator and returns the current element or NULL if all elements
@@ -138,7 +141,7 @@ void cpset_iterator_init(cpset_iterator_t *iterator, const cpset_t *cpset);
  * @param iterator  Pointer to the cpset iterator.
  * @returns         Next element in the cpset or NULL
  */
-void *cpset_iterator_next(cpset_iterator_t *iterator);
+FIRM_API void *cpset_iterator_next(cpset_iterator_t *iterator);
 
 /**
  * Removed the element the iterator currently points to
@@ -146,6 +149,8 @@ void *cpset_iterator_next(cpset_iterator_t *iterator);
  * @param cpset     Pointer to the cpset
  * @param iterator  Pointer to the cpset iterator.
  */
-void cpset_remove_iterator(cpset_t *cpset, const cpset_iterator_t *iterator);
+FIRM_API void cpset_remove_iterator(cpset_t *cpset, const cpset_iterator_t *iterator);
+
+#include "../end.h"
 
-#endif /* FIRM_ADT_CPSET_H */
+#endif