about summary refs log tree commit diff
path: root/shared.c
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2016-10-10 20:32:17 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2016-10-12 14:13:10 +0200
commit3e2e8f1c249bd52aae728b7f99fc471821a93b55 (patch)
tree59eacf297860ab57c41ca483acc2068937f8578c /shared.c
parentui-repolist: fix memory leak (diff)
downloadcgit-pink-3e2e8f1c249bd52aae728b7f99fc471821a93b55.tar.gz
cgit-pink-3e2e8f1c249bd52aae728b7f99fc471821a93b55.zip
shared: remove unused function strrpart()
Diffstat (limited to 'shared.c')
-rw-r--r--shared.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/shared.c b/shared.c
index 571fbba..8d08435 100644
--- a/shared.c
+++ b/shared.c
@@ -158,21 +158,6 @@ char *strlpart(char *txt, int maxlen)
 	return result;
 }
 
-char *strrpart(char *txt, int maxlen)
-{
-	char *result;
-
-	if (!txt)
-		return txt;
-
-	if (strlen(txt) <= maxlen)
-		return txt;
-	result = xmalloc(maxlen + 1);
-	memcpy(result + 3, txt + strlen(txt) - maxlen + 4, maxlen - 3);
-	result[0] = result[1] = result[2] = '.';
-	return result;
-}
-
 void cgit_add_ref(struct reflist *list, struct refinfo *ref)
 {
 	size_t size;