diff options
author | Greg McGary <greg@mcgary.org> | 1997-04-18 06:37:35 +0000 |
---|---|---|
committer | Greg McGary <greg@mcgary.org> | 1997-04-18 06:37:35 +0000 |
commit | db4eb289d1767b96b349e993313e83d93c07a8de (patch) | |
tree | c10f8ee5bad361c93d335c1088249c5ecdb12578 /fid.c | |
parent | c2e961ee7b01e5390b0973e69c68e5ae2e91702d (diff) | |
download | idutils-db4eb289d1767b96b349e993313e83d93c07a8de.tar.gz idutils-db4eb289d1767b96b349e993313e83d93c07a8de.tar.bz2 idutils-db4eb289d1767b96b349e993313e83d93c07a8de.zip |
imported from mkid-3.0.8r3_0_8
Diffstat (limited to 'fid.c')
-rw-r--r-- | fid.c | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -16,10 +16,11 @@ Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include "config.h" #include <stdio.h> #include <string.h> #include <ctype.h> + +#include <config.h> #include "idfile.h" #include "idarg.h" #include "bitops.h" @@ -29,10 +30,10 @@ #include "alloc.h" #include "token.h" -int get_idarg_index (char const *file_name); -int is_hit (unsigned char const *hits, int file_number); -int is_hit_1 (unsigned char const **hits, int level, int file_number); -void skip_hits (unsigned char const **hits, int level); +int get_idarg_index __P((char const *file_name)); +int is_hit __P((unsigned char const *hits, int file_number)); +int is_hit_1 __P((unsigned char const **hits, int level, int file_number)); +void skip_hits __P((unsigned char const **hits, int level)); FILE *id_FILE; struct idhead idh; |