* Copyright (c) 2002, Index Data
* See the file LICENSE for details.
*
- * $Id: tabcomplete.c,v 1.6 2002-07-12 13:42:20 adam Exp $
+ * $Id: tabcomplete.c,v 1.7 2002-08-29 19:34:44 ja7 Exp $
*/
#include <string.h>
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)
{
* Copyright (c) 2002, Index Data
* See the file LICENSE for details.
*
- * $Id: tabcomplete.h,v 1.3 2002-06-17 14:57:34 ja7 Exp $
+ * $Id: tabcomplete.h,v 1.4 2002-08-29 19:34:44 ja7 Exp $
*/
/*
This file contains the compleaters for the different commands.
*/
-
char* complete_querytype(const char* text, int state);
char* complete_format(const char* text, int state);
char* complete_schema(const char* text, int state);
char* complete_attributeset(const char* text, int state);
char* default_completer(const char* text, int state);
+char* complete_auto_reconnect(const char *text, int state);
/*
* Local variables: