Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
b966bd0c
Commit
b966bd0c
authored
May 02, 2007
by
Matthias Braun
Browse files
added doxygen comments
[r13596]
parent
f0532b3e
Changes
3
Hide whitespace changes
Inline
Side-by-side
ir/adt/iterator.c
View file @
b966bd0c
...
@@ -16,6 +16,13 @@
...
@@ -16,6 +16,13 @@
* WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE.
* PURPOSE.
*/
*/
/**
* @file
* @brief iterators
* @author Sebastian Hack
* @version $Id$
*/
#ifdef HAVE_CONFIG_H
#ifdef HAVE_CONFIG_H
# include "config.h"
# include "config.h"
#endif
#endif
...
...
ir/adt/plist.c
View file @
b966bd0c
...
@@ -18,16 +18,15 @@
...
@@ -18,16 +18,15 @@
*/
*/
/**
/**
* Simple, non circular, double linked pointer list.
* @file
* Created because the properties of the standard circular list were not
* @brief Simple, non circular, double linked pointer list.
* very well suited for the interference graph implementation.
* @note Created because the properties of the standard circular list were not
* This list uses an obstack and a free-list to efficiently manage its
* very well suited for the interference graph implementation.
* elements.
* This list uses an obstack and a free-list to efficiently manage its
* @author Kimon Hoffmann
* elements.
* @date 14.07.2005
* @author Kimon Hoffmann
* @cvs-id $Id$
* @date 14.07.2005
* @note Until now the code is entirely untested so it probably contains
* @version $Id$
* plenty of errors.
*/
*/
#include <stdlib.h>
#include <stdlib.h>
...
...
ir/adt/pset.c
View file @
b966bd0c
/**
* @file
* @brief pset implementation
* @version $Id$
*/
#define PSET
#define PSET
#include <set.c>
#include <set.c>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment