summaryrefslogtreecommitdiffstats
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-21 17:12:31 +0200
commit130de70e0f85ecec08fcfe4daed1d0c491089ea6 (patch)
tree2a0da8004ede970436f3888d632c42f09ecdbb93 /include/crypto
parent455e158ef9b3b600738f5b01190c2b7083d3d0ba (diff)
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/18103)
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..44fa9a8ae9 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(void);
+void ossl_deinit_casecmp(void);
#endif