From 2b3556b460665d9a4036b1623e7e7ff5ff6d37d8 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 26 Dec 2020 15:49:01 +0100 Subject: Implemented "Pattern Timers" --- tools.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'tools.c') diff --git a/tools.c b/tools.c index 3a3a1143..046829f0 100644 --- a/tools.c +++ b/tools.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: tools.c 4.13 2020/11/22 13:32:05 kls Exp $ + * $Id: tools.c 5.1 2020/12/26 15:49:01 kls Exp $ */ #include "tools.h" @@ -198,6 +198,12 @@ int strcountchr(const char *s, char c) return n; } +const char *strgetlast(const char *s, char c) +{ + const char *p = strrchr(s, c); + return p ? p + 1 : s; +} + char *stripspace(char *s) { if (s && *s) { -- cgit v1.2.3