2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
5 Desc: autoinit library - functions sets handling
9 #include <aros/symbolsets.h>
10 #include <aros/debug.h>
13 int set_call_funcs(const void *set
[], int direction
, int test_fail
)
15 int pos
, (*func
)(void);
17 D(bug("entering set_call_funcs() - %p\n", set
));
21 ForeachElementInSet(set
, direction
, pos
, func
)
23 bug("pos = %d, func = %p\n", pos
, func
);
27 ForeachElementInSet(set
, direction
, pos
, func
)