summaryrefslogtreecommitdiff
path: root/include/crypto
diff options
context:
space:
mode:
authorDmitry Belyavskiy <beldmit@gmail.com>2022-04-13 12:32:14 +0200
committerDmitry Belyavskiy <beldmit@gmail.com>2022-04-22 11:34:41 +0200
commit4b2bd2722b8294a6b27c9e1fcf7d76f7d9de9b44 (patch)
tree0d88b8de3e2a7ef5e6c0fe8efa13d64c4e802771 /include/crypto
parent5adddcd96255112ff04b350d661518302159e7e2 (diff)
downloadopenssl-new-4b2bd2722b8294a6b27c9e1fcf7d76f7d9de9b44.tar.gz
Public API functions OPENSSL_str[n]casecmp
Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/18069)
Diffstat (limited to 'include/crypto')
-rw-r--r--include/crypto/ctype.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/crypto/ctype.h b/include/crypto/ctype.h
index a35c137e84..831e53882d 100644
--- a/include/crypto/ctype.h
+++ b/include/crypto/ctype.h
@@ -80,4 +80,6 @@ int ossl_ascii_isdigit(const char inchar);
# 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_int(void);
+void ossl_deinit_casecmp(void);
#endif