X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=client%2Ftabcomplete.c;h=07cb0f091eb4cc88aa393b01000aa6e4e413e933;hb=ac5f8ad9508f5b3ada38117b0da7ae23c650ab1e;hp=db4552c9dca55779465462db8dc79607c627129d;hpb=a2df70871ff2494610edf71f7c7c74b785a69cd6;p=yaz-moved-to-github.git diff --git a/client/tabcomplete.c b/client/tabcomplete.c index db4552c..07cb0f0 100644 --- a/client/tabcomplete.c +++ b/client/tabcomplete.c @@ -2,7 +2,7 @@ * Copyright (c) 2002, Index Data * See the file LICENSE for details. * - * $Id: tabcomplete.c,v 1.5 2002-06-17 14:57:34 ja7 Exp $ + * $Id: tabcomplete.c,v 1.7 2002-08-29 19:34:44 ja7 Exp $ */ #include @@ -29,7 +29,13 @@ char* complete_from_list(char* completions[], const char *text, int state) idx = 0; } for(; completions[idx]; ++ idx) { - if(!strncasecmp(completions[idx],text,strlen(text))) { + if(! +#ifdef WIN32 + _strnicmp +#else + strncasecmp +#endif + (completions[idx],text,strlen(text))) { ++idx; /* skip this entry on the next run */ return (char*)strdup(completions[idx-1]); }; @@ -97,6 +103,12 @@ char* complete_querytype(const char *text, int state) return complete_from_list(querytypes,text,state); } +char* complete_auto_reconnect(const char *text, int state) +{ + char* querytypes[] = {"on","off",0}; + return complete_from_list(querytypes,text,state); +} + char* complete_format(const char* text, int state) {