mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-04 04:52:47 -05:00
Implemented a simple wildcard matching engine, and used it to
restore remote wildcard capability in sftp-style PSCP. [originally from svn r1209]
This commit is contained in:
6
putty.h
6
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
|
||||
|
Reference in New Issue
Block a user