Merge branch 'perf/urgent' into perf/core
[linux-2.6-block.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 char *strxfrchar(char *s, char from, char to);
8
9 #define _STR(x) #x
10 #define STR(x) _STR(x)
11
12 #endif /* __PERF_STRING_H */