/* * Copyright (C) 2003 by Martin Pool * * Test harness for StrCaseCmp */#include"includes.h"intmain(int argc,char*argv[]){if(argc !=3) {fprintf(stderr,"usage:%sSTRING1 STRING2\n""Compares two strings, prints the results of StrCaseCmp\n",
argv[0]);return2;}printf("%d\n",StrCaseCmp(argv[1], argv[2]));return0;}