Implemented a simple wildcard matching engine, and used it to
[u/mdw/putty] / putty.h
diff --git a/putty.h b/putty.h
index fce1ebc..d8a6daf 100644 (file)
--- a/putty.h
+++ b/putty.h
@@ -555,5 +555,11 @@ void crypto_wrapup();
 void agent_query(void *in, int inlen, void **out, int *outlen);
 int agent_exists(void);
 
+/*
+ * Exports from wildcard.c
+ */
+const char *wc_error(int value);
+int wc_match(const char *wildcard, const char *target);
+int wc_unescape(char *output, const char *wildcard);
 
 #endif