about summary refs log tree commit diff stats
path: root/shared.c
diff options
context:
space:
mode:
Diffstat (limited to 'shared.c')
-rw-r--r--shared.c16
1 files changed, 0 insertions, 16 deletions
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)
142 strbuf_addch(sb, c); 142 strbuf_addch(sb, c);
143} 143}
144 144
145char *strlpart(char *txt, int maxlen)
146{
147 char *result;
148
149 if (!txt)
150 return txt;
151
152 if (strlen(txt) <= maxlen)
153 return txt;
154 result = xmalloc(maxlen + 1);
155 memcpy(result, txt, maxlen - 3);
156 result[maxlen-1] = result[maxlen-2] = result[maxlen-3] = '.';
157 result[maxlen] = '\0';
158 return result;
159}
160
161void cgit_add_ref(struct reflist *list, struct refinfo *ref) 145void cgit_add_ref(struct reflist *list, struct refinfo *ref)
162{ 146{
163 size_t size; 147 size_t size;