/*
 * COPYRIGHT:
 *
 *   Unless otherwise noted, all files are Copyright (c) 1999 Amiga, Inc.
 *   All rights reserved.
 *
 * DISCLAIMER:
 *
 *   This software is provided "as is". No representations or warranties
 *   are made with respect to the accuracy, reliability, performance,
 *   currentness, or operation of this software, and all use is at your
 *   own risk. Neither Amiga nor the authors assume any responsibility
 *   or liability whatsoever with respect to your use of this software.
 */

#include <workbench/workbench.h>
#include <clib/icon_protos.h>
#include <clib/dos_protos.h>

int
main(int argc,char **argv)
{
	if(argc > 1)
	{
		BOOL result;
		int i;

		for(i = 2 ; i < argc ; i++)
		{
			result = MatchToolValue(argv[1],argv[i]);

			Printf("MatchToolValue(\"%s\",\"%s\") = %s\n",
				argv[1],argv[i],result ? "TRUE" : "FALSE");
		}
	}

	return(0);
}
