]> git.imager.perl.org - imager.git/blob - feat.c
Imager::Color set_internal is now simpler
[imager.git] / feat.c
1 #include "feat.h"
2
3 /* only for use as a placeholder in the old dynamic module code */
4 undef_int
5 i_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 }