- don't free user-supplied string (via -e)
[oweals/busybox.git] / libbb / skip_whitespace.c
index 87b5f23ba1dc47c50c08b966f2921a8e64af48d7..e85f3859faa1e0db3e17a6bff471400fa32d3a50 100644 (file)
@@ -9,7 +9,7 @@
 
 #include "libbb.h"
 
-char *skip_whitespace(const char *s)
+char* FAST_FUNC skip_whitespace(const char *s)
 {
        /* NB: isspace('\0') returns 0 */
        while (isspace(*s)) ++s;
@@ -17,7 +17,7 @@ char *skip_whitespace(const char *s)
        return (char *) s;
 }
 
-char *skip_non_whitespace(const char *s)
+char* FAST_FUNC skip_non_whitespace(const char *s)
 {
        while (*s && !isspace(*s)) ++s;