]> git.karo-electronics.de Git - linux-beck.git/blob - tools/perf/util/string.h
Merge branch 'tracing-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-beck.git] / tools / perf / util / string.h
1 #ifndef _PERF_STRING_H_
2 #define _PERF_STRING_H_
3
4 #include "types.h"
5
6 int hex2u64(const char *ptr, u64 *val);
7
8 #define _STR(x) #x
9 #define STR(x) _STR(x)
10
11 #endif