add new comparison method rgb_difference that resembles arithmetical difference per...
[imager.git] / feat.c
... / ...
CommitLineData
1#include "feat.h"
2
3/* only for use as a placeholder in the old dynamic module code */
4undef_int
5i_has_format(char *frmt) {
6 int rc,i;
7 rc=0;
8 i=0;
9 while(i_format_list[i] != NULL) if ( !strcmp(frmt,i_format_list[i++]) ) rc=1;
10 return(rc);
11}