diff options
Diffstat (limited to 'crypto/openssh/match.h')
-rw-r--r-- | crypto/openssh/match.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/crypto/openssh/match.h b/crypto/openssh/match.h deleted file mode 100644 index 4625d97691fb4..0000000000000 --- a/crypto/openssh/match.h +++ /dev/null @@ -1,18 +0,0 @@ -#ifndef MATCH_H -#define MATCH_H - -/* - * Returns true if the given string matches the pattern (which may contain ? - * and * as wildcards), and zero if it does not match. - */ -int match_pattern(const char *s, const char *pattern); - -/* - * Tries to match the host name (which must be in all lowercase) against the - * comma-separated sequence of subpatterns (each possibly preceded by ! to - * indicate negation). Returns true if there is a positive match; zero - * otherwise. - */ -int match_hostname(const char *host, const char *pattern, unsigned int len); - -#endif |