X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/3e2e8f1c249bd52aae728b7f99fc471821a93b55..2d59e6a64e9869cc8420cb532af29a9eba867004:/shared.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;