You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by am...@apache.org on 2018/08/22 15:16:56 UTC

[trafficserver] branch master updated: Cleanup: remove unused and unimplemented functions from ink_string.h

This is an automated email from the ASF dual-hosted git repository.

amc 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 62260bf  Cleanup: remove unused and unimplemented functions from ink_string.h
62260bf is described below

commit 62260bf07b58069f589196c56e00985fb669f537
Author: Alan M. Carroll <am...@apache.org>
AuthorDate: Wed Aug 22 06:48:33 2018 -0500

    Cleanup: remove unused and unimplemented functions from ink_string.h
---
 lib/ts/ink_string.h | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/lib/ts/ink_string.h b/lib/ts/ink_string.h
index 7ba8c4c..20f65f8 100644
--- a/lib/ts/ink_string.h
+++ b/lib/ts/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
 
-inkcoreapi int ink_strcasecmp(const char *a, const char *b);
-inkcoreapi int ink_strncasecmp(const char *a, const char *b, unsigned int max);
-
 /* 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);