diff options
Diffstat (limited to '')
-rw-r--r-- | tools/perf/util/string2.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/perf/util/string2.h b/tools/perf/util/string2.h index 73df616ced43..4c8bff47cfd3 100644 --- a/tools/perf/util/string2.h +++ b/tools/perf/util/string2.h @@ -37,5 +37,10 @@ char *asprintf__tp_filter_pids(size_t npids, pid_t *pids); char *strpbrk_esc(char *str, const char *stopset); char *strdup_esc(const char *str); +char *strpbrk_esq(char *str, const char *stopset); +char *strdup_esq(const char *str); + +unsigned int hex(char c); +char *strreplace_chars(char needle, const char *haystack, const char *replace); #endif /* PERF_STRING_H */ |