Make FOR_EACH_SUPPORTED_FILTER() local to filter_common.c.
[paraslash.git] / filter_common.c
index 009ac936d55a7e398f623e6c374a4df68e5e06f4..53cde746001b6a42eb8e482addcd6231ad5560d5 100644 (file)
@@ -19,6 +19,9 @@
 #include "error.h"
 #include "string.h"
 
+/** Iterate over the array of supported filters. */
+#define FOR_EACH_SUPPORTED_FILTER(j)  for (j = 0; j < NUM_SUPPORTED_FILTERS; j++)
+
 /** The array of supported filters. */
 struct filter filters[NUM_SUPPORTED_FILTERS] = {FILTER_ARRAY};