Bump to version 1.22.1
[platform/upstream/busybox.git] / libbb / last_char_is.c
index aaa85dd..65e6cdf 100644 (file)
@@ -4,7 +4,7 @@
  *
  * Copyright (C) 2001 Larry Doolittle, <ldoolitt@recycle.lbl.gov>
  *
- * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
+ * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
 
 #include "libbb.h"
@@ -12,7 +12,7 @@
 /* Find out if the last character of a string matches the one given.
  * Don't underrun the buffer if the string length is 0.
  */
-char* last_char_is(const char *s, int c)
+char* FAST_FUNC last_char_is(const char *s, int c)
 {
        if (s && *s) {
                size_t sz = strlen(s) - 1;