summaryrefslogtreecommitdiffstats
path: root/include/crypto
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2022-05-10 16:31:20 +0200
committerTomas Mraz <tomas@openssl.org>2022-05-13 08:33:39 +0200
commit250170d3b03d8e1f56e66c901abb096d8cc80cf4 (patch)
tree520a91e117251c1137624ccf6275f5617b48c5c7 /include/crypto
parentacbd162f8859c8172f2b61a678e36993121a44da (diff)
Move OPENSSL_strcasecmp() and related to o_str.c
Otherwise the implementation is unnecessarily duplicated in legacy.so. Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/18293)
Diffstat (limited to 'include/crypto')
-rw-r--r--include/crypto/ctype.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/crypto/ctype.h b/include/crypto/ctype.h
index 16f135df3b..6deee3b947 100644
--- a/include/crypto/ctype.h
+++ b/include/crypto/ctype.h
@@ -79,7 +79,4 @@ int ossl_ascii_isdigit(const char inchar);
# define ossl_isxdigit(c) (ossl_ctype_check((c), CTYPE_MASK_xdigit))
# define ossl_isbase64(c) (ossl_ctype_check((c), CTYPE_MASK_base64))
# define ossl_isasn1print(c) (ossl_ctype_check((c), CTYPE_MASK_asn1print))
-
-int ossl_init_casecmp(void);
-void ossl_deinit_casecmp(void);
#endif