diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2009-06-01 22:31:03 -0300 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-06-02 03:40:42 +0200 |
commit | ea5cc87c63b49c133d15ec2911bb2e49e8124516 (patch) | |
tree | c775153302ace5846a8add4e4f7f0737595fb2a0 /Documentation/perf_counter/util/string.h | |
parent | 229c4eedcedcdadf70411120ba34bc37554a74bd (diff) | |
download | lwn-ea5cc87c63b49c133d15ec2911bb2e49e8124516.tar.gz lwn-ea5cc87c63b49c133d15ec2911bb2e49e8124516.zip |
perf_counter tools: Add string.[ch]
Add hex conversion libraries. We are going to replace sscanf()
uses with them.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'Documentation/perf_counter/util/string.h')
-rw-r--r-- | Documentation/perf_counter/util/string.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Documentation/perf_counter/util/string.h b/Documentation/perf_counter/util/string.h new file mode 100644 index 000000000000..72812c1c9a7a --- /dev/null +++ b/Documentation/perf_counter/util/string.h @@ -0,0 +1,8 @@ +#ifndef _PERF_STRING_H_ +#define _PERF_STRING_H_ + +#include <linux/types.h> + +int hex2u64(const char *ptr, __u64 *val); + +#endif |