Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

C89 foreach macro

Name: Anonymous 2013-04-11 23:12

Anyone else ever write a foreach macro in C? I find it useful to have every now and again, but I find myself needing to rewrite the macro for every different large project. Maybe I'm not doing it right...

Name: Anonymous 2013-04-12 1:50

>>4
#define foreach_array(a,i) for (i = 0; i < sizeof a / sizeof a[0]; i++)
#define foreach_list(l,np) for (np = l; np; np = np->next)

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List