This is an automated email from the ASF dual-hosted git repository.
bcall pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new 9436559 ink_utf8_to_latin1 is not defined, removing declaration
(#7737)
9436559 is described below
commit 943655989da8e4364a641f79917a1969968116c7
Author: Bryan Call <[email protected]>
AuthorDate: Fri Apr 23 13:03:34 2021 -0700
ink_utf8_to_latin1 is not defined, removing declaration (#7737)
---
include/tscore/ink_string.h | 3 ---
1 file changed, 3 deletions(-)
diff --git a/include/tscore/ink_string.h b/include/tscore/ink_string.h
index d7f9ae0..997e556 100644
--- a/include/tscore/ink_string.h
+++ b/include/tscore/ink_string.h
@@ -76,9 +76,6 @@ size_t ink_strlcpy(char *dst, const char *str, size_t siz);
size_t ink_strlcat(char *dst, const char *str, size_t siz);
#endif
-/* Convert from UTF-8 to latin-1/iso-8859-1. This can be lossy. */
-void ink_utf8_to_latin1(const char *in, int inlen, char *out, int *outlen);
-
/*===========================================================================*
Inline Functions