projects
/
imager.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
Initial revision
[imager.git]
/
feat.c
Commit
Line
Data
02d1d628
AMH
1
#include "feat.h"
2
3
undef_int
4
i_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
}