Doing generic foreach loops in C
Doing generic foreach loops in C While doing some work with linked lists, I looked into making an iterator loop. I wanted it to be generic without too much #define magic so as to still be readable for the average C programmer. I came up with this: This code defines two arrays and uses the […]
Doing generic foreach loops in C Read More »