summaryrefslogtreecommitdiffstats
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:54:29 +1000
commitd971d89786149d47efbf4d58f48eb94e65aaa07f (patch)
treeddabf48bafcacdf26ade279b7b3233b26a4fe004 /include
parent27e8f212d8383e78e698d7049c210b13a0cc8889 (diff)
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) (cherry picked from commit fb4cdca053fb9d3f0e11eeaf31f4b4ff87f69a95)
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 4915680c26..1291299b6e 100644
--- a/include/internal/cryptlib.h
+++ b/include/internal/cryptlib.h
@@ -258,7 +258,4 @@ static ossl_inline int ossl_is_absolute_path(const char *path)
return path[0] == '/';
}
-int ossl_init_casecmp_int(void);
-int ossl_init_casecmp(void);
-void ossl_deinit_casecmp(void);
#endif