Files
linux-apfs/tools/perf/util/string.h
T

12 lines
160 B
C
Raw Normal View History

2009-06-01 22:31:03 -03:00
#ifndef _PERF_STRING_H_
#define _PERF_STRING_H_
2009-06-25 17:05:54 +02:00
#include "types.h"
2009-06-01 22:31:03 -03:00
int hex2u64(const char *ptr, u64 *val);
2009-06-01 22:31:03 -03:00
2009-07-21 14:16:29 -04:00
#define _STR(x) #x
#define STR(x) _STR(x)
2009-06-01 22:31:03 -03:00
#endif