]> git.imager.perl.org - imager.git/blame - feat.c
add some extra error reporting to I/O layer tests
[imager.git] / feat.c
CommitLineData
02d1d628
AMH
1#include "feat.h"
2
2368cfec 3/* only for use as a placeholder in the old dynamic module code */
02d1d628
AMH
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}