szf (Search Zip Files) by Tormod Tjaberg 

email: tjaberg@online.no
www  : http://home.online.no/~tjaberg

Copyright (C) 2000-02 Tormod Tjaberg

szf is free software, distributed under the terms of the
GNU General Public License. szf comes with no warranty at all.

description
===========

szf is a program which allows you to easily search all your 
zipfiles for a file with a given CRC. Multiple CRC's and
directories are supported. szf can be compiled with
a gcc compatible compiler and will run under DOS, WIN32
or on one of the many flavours of UNIX. This code has to be
compiled on a machine where sizeof(int) >= 4.

Note:
The executable within the archive is a WIN32 binary.

usage
=====

Copy the executable to a directory which is in your PATH.

issue the command:

szf -c 0x73327606 -c 0xf19c3b06 -c 0xe5725eaf /mame/roms

This will traverse the /mame/roms directory looking for
a zip archive which contains a file with a CRC of 
73327606, f19c3b06, or e5725eaf. 

If you want to search a directory including subdirectories use this command:

szf -R -c 0x73327606 -c 0xf19c3b06 -c 0xe5725eaf /unemulated

The '-R' option will process all the subdirectories recursivly. 

compiling
=========

I have included two makefiles.

makefile      - for djgpp/mingw
makefile.unix - for unix 

To avoid a lot of complaints under UNIX unzip the 
archive with the -a option which will auto convert
any text files.

credits
=======

. The MAME team for creating MAME 
. The MAME team for their ZIP routines
. Logiqx for rombuild (http://www.logiqx.com)
. Annette for being what she is...


