wmi-1.3.16 from opsview.com

This commit is contained in:
Are Casilla
2019-02-16 00:16:52 +01:00
parent 163fdd3d1b
commit 17b3af2911
2146 changed files with 678824 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
/*
* Copyright (C) 2003 by Martin Pool
*
* Test harness for strcasecmp_m
*/
#include "includes.h"
int main(int argc, char *argv[])
{
if (argc != 3) {
fprintf(stderr, "usage: %s STRING1 STRING2\nCompares two strings\n",
argv[0]);
return 2;
}
printf("%d\n", strcasecmp_m(argv[1], argv[2]));
return 0;
}