summaryrefslogtreecommitdiff
path: root/tools.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools.c')
-rw-r--r--tools.c8
1 files changed, 7 insertions, 1 deletions
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) {