Let list_for_each_entry(), list_for_each_entry_reverse() and list_for_each_entry_safe...
[libfirm] / include / libfirm / adt / obst.h
index ab5c04b..6198b8b 100644 (file)
 
 /**
  * @file
- * @brief     Provied obstack_chunk_alloc and obstack_chunk_free for obstack.h
+ * @brief     Provides obstack_chunk_alloc and obstack_chunk_free for obstack.h
  * @author    Martin Trapp, Christian Schaefer
- * @version   $Id$
  */
 #ifndef FIRM_ADT_OBST_H
 #define FIRM_ADT_OBST_H
 
-#include <obstack.h>
+#include "obstack.h"
 #include "xmalloc.h"
 
+/** @cond PRIVATE */
 #define obstack_chunk_alloc xmalloc
 #define obstack_chunk_free  free
+/** @endcond */
 
+/** An obstack initializer containing zero values. Can be used to initialize
+ * obstacks in an initializer. */
 #define NULL_OBST     { 0, NULL, NULL, NULL, NULL, 0, 0, NULL, NULL, NULL, 0, 0, 0 }
 
 #endif