Archived
14
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
linux-2.6/Documentation/perf_counter/util/string.h
Arnaldo Carvalho de Melo ea5cc87c63 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>
2009-06-02 03:40:42 +02:00

9 lines
125 B
C

#ifndef _PERF_STRING_H_
#define _PERF_STRING_H_
#include <linux/types.h>
int hex2u64(const char *ptr, __u64 *val);
#endif