List for cgit developers and users
 help / color / mirror / Atom feed
From: list at eworm.de (Christian Hesse)
Subject: [PATCH 3/3] shared: remove unused function strlpart()
Date: Mon, 10 Oct 2016 20:36:02 +0200	[thread overview]
Message-ID: <20161010183602.26416-3-list@eworm.de> (raw)
In-Reply-To: <20161010183602.26416-1-list@eworm.de>

From: Christian Hesse <mail at eworm.de>

Signed-off-by: Christian Hesse <mail at eworm.de>
---
 cgit.h   |  1 -
 shared.c | 16 ----------------
 2 files changed, 17 deletions(-)

diff --git a/cgit.h b/cgit.h
index bef6e5f..fbc6c6a 100644
--- a/cgit.h
+++ b/cgit.h
@@ -333,7 +333,6 @@ extern int chk_non_negative(int result, char *msg);
 
 extern char *trim_end(const char *str, char c);
 extern char *ensure_end(const char *str, char c);
-extern char *strlpart(char *txt, int maxlen);
 
 extern void strbuf_ensure_end(struct strbuf *sb, char c);
 
diff --git a/shared.c b/shared.c
index 8d08435..c63f1e3 100644
--- a/shared.c
+++ b/shared.c
@@ -142,22 +142,6 @@ void strbuf_ensure_end(struct strbuf *sb, char c)
 		strbuf_addch(sb, c);
 }
 
-char *strlpart(char *txt, int maxlen)
-{
-	char *result;
-
-	if (!txt)
-		return txt;
-
-	if (strlen(txt) <= maxlen)
-		return txt;
-	result = xmalloc(maxlen + 1);
-	memcpy(result, txt, maxlen - 3);
-	result[maxlen-1] = result[maxlen-2] = result[maxlen-3] = '.';
-	result[maxlen] = '\0';
-	return result;
-}
-
 void cgit_add_ref(struct reflist *list, struct refinfo *ref)
 {
 	size_t size;
-- 
2.10.0



  parent reply	other threads:[~2016-10-10 18:36 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-10 18:36 [PATCH 1/3] ui-repolist: fix memory leak list
2016-10-10 18:36 ` [PATCH 2/3] shared: remove unused function strrpart() list
2016-10-12 11:18   ` Jason
2016-10-10 18:36 ` list [this message]
2016-10-12 11:18   ` [PATCH 3/3] shared: remove unused function strlpart() Jason
2016-10-12 11:18 ` [PATCH 1/3] ui-repolist: fix memory leak Jason

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20161010183602.26416-3-list@eworm.de \
    --to=cgit@lists.zx2c4.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).