added doxygen comments
authorMatthias Braun <matze@braunis.de>
Wed, 2 May 2007 13:37:59 +0000 (13:37 +0000)
committerMatthias Braun <matze@braunis.de>
Wed, 2 May 2007 13:37:59 +0000 (13:37 +0000)
[r13596]

ir/adt/iterator.c
ir/adt/plist.c
ir/adt/pset.c

index 49a7d7a..f5f7c5e 100644 (file)
  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  * PURPOSE.
  */
+
+/**
+ * @file
+ * @brief   iterators
+ * @author  Sebastian Hack
+ * @version $Id$
+ */
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
index 5e9d474..6fa644a 100644 (file)
  */
 
 /**
- * Simple, non circular, double linked pointer list.
- * Created because the properties of the standard circular list were not
- * very well suited for the interference graph implementation.
- * This list uses an obstack and a free-list to efficiently manage its
- * elements.
- * @author Kimon Hoffmann
- * @date   14.07.2005
- * @cvs-id $Id$
- * @note Until now the code is entirely untested so it probably contains
- *             plenty of errors.
+ * @file
+ * @brief Simple, non circular, double linked pointer list.
+ * @note  Created because the properties of the standard circular list were not
+ *        very well suited for the interference graph implementation.
+ *        This list uses an obstack and a free-list to efficiently manage its
+ *        elements.
+ * @author  Kimon Hoffmann
+ * @date    14.07.2005
+ * @version $Id$
  */
 #include <stdlib.h>
 
index 7c70368..8b5d309 100644 (file)
@@ -1,2 +1,7 @@
+/**
+ * @file
+ * @brief   pset implementation
+ * @version $Id$
+ */
 #define PSET
 #include <set.c>