lsmod: repair indentation
[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 <string.h>
11 #include "libbb.h"
12
13 /* Find out if the last character of a string matches the one given Don't
14  * underrun the buffer if the string length is 0.  Also avoids a possible
15  * space-hogging inline of strlen() per usage.
16  */
17 char * last_char_is(const char *s, int c)
18 {
19         char *sret = (char *)s;
20         if (sret) {
21                 sret = strrchr(sret, c);
22                 if(sret != NULL && *(sret+1) != 0)
23                         sret = NULL;
24         }
25         return sret;
26 }