blob: 15c827475e7d20cfc069244ab991cac3b7b32232 [file] [log] [blame]
John Kacur8b40f522009-09-24 18:02:18 +02001#ifndef __PERF_STRING_H_
2#define __PERF_STRING_H_
Arnaldo Carvalho de Meloea5cc872009-06-01 22:31:03 -03003
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02004#include "types.h"
Arnaldo Carvalho de Meloea5cc872009-06-01 22:31:03 -03005
Paul Mackerras9cffa8d2009-06-19 22:21:42 +10006int hex2u64(const char *ptr, u64 *val);
Arnaldo Carvalho de Meloea5cc872009-06-01 22:31:03 -03007
Jason Baron5beeded2009-07-21 14:16:29 -04008#define _STR(x) #x
9#define STR(x) _STR(x)
10
John Kacur8b40f522009-09-24 18:02:18 +020011#endif /* __PERF_STRING_H */