Diffstat (limited to 'shared.c')
| -rw-r--r-- | shared.c | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -158,6 +158,21 @@ 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; |