On Tue, Nov 06, 2007 at 02:33:53AM -0800, akpm@linux-foundation.org wrote:
[mmotm.git] / tools / perf / util / string.h
blob2c84bf65ba0fac020c2df05732b4b7ee0d6afabc
1 #ifndef __PERF_STRING_H_
2 #define __PERF_STRING_H_
4 #include "types.h"
6 int hex2u64(const char *ptr, u64 *val);
7 char *strxfrchar(char *s, char from, char to);
9 #define _STR(x) #x
10 #define STR(x) _STR(x)
12 #endif /* __PERF_STRING_H */