tools lib: Adopt skip_spaces() from the kernel sources

Same implementation, will be used to replace ad-hoc equivalent code in
tools/.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: André Goddard Rosa <andre.goddard@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: https://lkml.kernel.org/n/tip-dig691cg9ripvoiprpidthw7@git.kernel.orgSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent bd9860bf
...@@ -29,4 +29,6 @@ static inline bool strstarts(const char *str, const char *prefix) ...@@ -29,4 +29,6 @@ static inline bool strstarts(const char *str, const char *prefix)
return strncmp(str, prefix, strlen(prefix)) == 0; return strncmp(str, prefix, strlen(prefix)) == 0;
} }
#endif /* _LINUX_STRING_H_ */ extern char * __must_check skip_spaces(const char *);
#endif /* _TOOLS_LINUX_STRING_H_ */
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
#include <string.h> #include <string.h>
#include <errno.h> #include <errno.h>
#include <linux/string.h> #include <linux/string.h>
#include <linux/ctype.h>
#include <linux/compiler.h> #include <linux/compiler.h>
/** /**
...@@ -106,3 +107,16 @@ size_t __weak strlcpy(char *dest, const char *src, size_t size) ...@@ -106,3 +107,16 @@ size_t __weak strlcpy(char *dest, const char *src, size_t size)
} }
return ret; return ret;
} }
/**
* skip_spaces - Removes leading whitespace from @str.
* @str: The string to be stripped.
*
* Returns a pointer to the first non-whitespace character in @str.
*/
char *skip_spaces(const char *str)
{
while (isspace(*str))
++str;
return (char *)str;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment