diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-06-25 21:23:18 -0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-06-25 21:23:18 -0300 |
commit | 7bd330de43fd5693e90be13dac7fbd9af3b6335d (patch) | |
tree | 0e3a3029bbb61d14730f84ae08a0be89d6dd2477 /tools/include | |
parent | bd9860bf050f77c4e260a9ae10a5587009ad6e07 (diff) | |
download | linux-7bd330de43fd5693e90be13dac7fbd9af3b6335d.tar.bz2 |
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.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/include')
-rw-r--r-- | tools/include/linux/string.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/include/linux/string.h b/tools/include/linux/string.h index 6c3e2cc274c5..cee239350a6b 100644 --- a/tools/include/linux/string.h +++ b/tools/include/linux/string.h @@ -29,4 +29,6 @@ static inline bool strstarts(const char *str, const char *prefix) return strncmp(str, prefix, strlen(prefix)) == 0; } -#endif /* _LINUX_STRING_H_ */ +extern char * __must_check skip_spaces(const char *); + +#endif /* _TOOLS_LINUX_STRING_H_ */ |