summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPauli <pauli@openssl.org>2022-05-19 12:51:07 +1000
committerPauli <pauli@openssl.org>2022-05-23 09:51:28 +1000
commitfb4cdca053fb9d3f0e11eeaf31f4b4ff87f69a95 (patch)
tree696cf14304289e50036166c57647bb1963b7bc00 /include
parent286053fc8f78e34828a576830ef879c021640aee (diff)
downloadopenssl-new-fb4cdca053fb9d3f0e11eeaf31f4b4ff87f69a95.tar.gz
strcasecmp: implement strcasecmp and strncasecmp
Rather than relying on the locale code working, instead implement these functions directly. Fixes #18322 Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> (Merged from https://github.com/openssl/openssl/pull/18344)
Diffstat (limited to 'include')
-rw-r--r--include/internal/cryptlib.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/internal/cryptlib.h b/include/internal/cryptlib.h
index ebb945f40c..5384cac56e 100644
--- a/include/internal/cryptlib.h
+++ b/include/internal/cryptlib.h
@@ -157,7 +157,4 @@ char *ossl_ipaddr_to_asc(unsigned char *p, int len);
char *ossl_buf2hexstr_sep(const unsigned char *buf, long buflen, char sep);
unsigned char *ossl_hexstr2buf_sep(const char *str, long *buflen,
const char sep);
-int ossl_init_casecmp_int(void);
-int ossl_init_casecmp(void);
-void ossl_deinit_casecmp(void);
#endif