avoid using note() since it's not in older Test::More and I don't want
[imager.git] / feat.c
CommitLineData
02d1d628
AMH
1#include "feat.h"
2
3undef_int
4i_has_format(char *frmt) {
5 int rc,i;
6 rc=0;
7 i=0;
8 while(i_format_list[i] != NULL) if ( !strcmp(frmt,i_format_list[i++]) ) rc=1;
9 return(rc);
10}