/* * graphics.h * * Various array utilities. * */ #define foreach(a, i, v) unsigned int i; for (v = a[i=0]; i < array_count(a); v = a[i++])