X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/b54ef9749c083afd86573112fad3b3ed8ee2d0e4..545b5a5dcae2a0c322381493ee90f6c37353da9c:/ui-stats.c diff --git a/ui-stats.c b/ui-stats.c index 9fc06d3..bdaf9cc 100644 --- a/ui-stats.c +++ b/ui-stats.c @@ -154,6 +154,14 @@ int cgit_find_stats_period(const char *expr, struct cgit_period **period) return 0; } +const char *cgit_find_stats_periodname(int idx) +{ + if (idx > 0 && idx < 4) + return periods[idx - 1].name; + else + return ""; +} + static void add_commit(struct string_list *authors, struct commit *commit, struct cgit_period *period) {