treewrite: use Lindent to reformat to kernel coding style
[oweals/opkg-lede.git] / libbb / last_char_is.c
index 26c242369a2e2cb586e7666d3923757f4c42c52c..8c6dd6f0cb4b73d9f9eab2b5adf279765a7ee9a2 100644 (file)
  * underrun the buffer if the string length is 0.  Also avoids a possible
  * space-hogging inline of strlen() per usage.
  */
-char * last_char_is(const char *s, int c)
+char *last_char_is(const char *s, int c)
 {
        char *sret;
        if (!s)
-           return NULL;
-       sret  = (char *)s+strlen(s)-1;
-       if (sret>=s && *sret == c) {
+               return NULL;
+       sret = (char *)s + strlen(s) - 1;
+       if (sret >= s && *sret == c) {
                return sret;
        } else {
                return NULL;