- remove functions marked as LEGACY in SUSv3 and use their modern counterparts.
[oweals/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         if (s) {
19                 s = strrchr(s, c);
20                 if (s && !s[1])
21                         return (char*)s;
22         }
23         return NULL;
24 }