X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=UCI2WB.c;h=079960da69fbb8172be800e13aa20908853f4071;hb=bdbb7ca818c7bad56686832eba6706458aae88bd;hp=2370615efc58cbe28ac88ae8bb0df9e356918507;hpb=aee345a6b5d8582e826af026fad391d477db7272;p=uci2wb.git diff --git a/UCI2WB.c b/UCI2WB.c index 2370615..079960d 100644 --- a/UCI2WB.c +++ b/UCI2WB.c @@ -9,7 +9,7 @@ /* of which you should have received a copy together with this file. */ /****************************************************************************/ -#define VERSION "2.2" +#define VERSION "2.3" #include #include @@ -51,6 +51,8 @@ FILE *toE, *fromE, *fromF; int pid; #ifdef WIN32 +char *strcasestr (char *p, char *q) { char *r = p; while(*r) *r = tolower(*r), r++; return strstr(p, q); } + WinPipe(HANDLE *hRd, HANDLE *hWr) { SECURITY_ATTRIBUTES saAttr;