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