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
3c53cd3d
Commit
3c53cd3d
authored
Apr 19, 2007
by
Christian Würdig
Browse files
fixed CRLF
added comment [r13410]
parent
3903325f
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/adt/pset_new.h
View file @
3c53cd3d
...
...
@@ -107,4 +107,12 @@ void* pset_new_iterator_next(pset_new_iterator_t *iterator);
*/
void
pset_new_remove_iterator
(
pset_new_t
*
pset_new
,
const
pset_new_iterator_t
*
iterator
);
#endif
/**
* Convenience macro for iterating over a pset_new.
*/
#define foreach_pset_new(pset_new, ptr, iter) \
for(pset_new_iterator_init(&iter, pset_new), \
ptr = pset_new_iterator_next(&iter); \
ptr != NULL; ptr = pset_new_iterator_next(&iter))
#endif
/* _FIRM_PSET_NEW_H_ */
Write
Preview
Supports
Markdown
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