string.h 160 B

1234567891011
  1. #ifndef _PERF_STRING_H_
  2. #define _PERF_STRING_H_
  3. #include "types.h"
  4. int hex2u64(const char *ptr, u64 *val);
  5. #define _STR(x) #x
  6. #define STR(x) _STR(x)
  7. #endif