tar: fix multiple -t and/or -v options handling.
[platform/upstream/busybox.git] / libbb / last_char_is.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * busybox library eXtended function
4  *
5  * Copyright (C) 2001 Larry Doolittle, <ldoolitt@recycle.lbl.gov>
6  *
7  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8  */
9
10 #include "libbb.h"
11
12 /* Find out if the last character of a string matches the one given Don't
13  * underrun the buffer if the string length is 0.  Also avoids a possible
14  * space-hogging inline of strlen() per usage.
15  */
16 char* last_char_is(const char *s, int c)
17 {
18         char *sret;
19         if (s) {
20                 sret = strrchr(s, c);
21                 if (sret && !sret[1])
22                         return sret;
23         }
24         return NULL;
25 }