Files
kvmtool/include/kvm/strbuf.h
T
Prasad Joshi 98ee79f433 kvm tools: Use code from perf for argument processing
- parse-options.[ch] has argument processing code.

- types.h: Additional types for argument processing.

- strbuf.[ch]: Added a function prefixcmp to compare string prefix

Signed-off-by: Prasad Joshi <prasadjoshi124@gmail.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
2015-06-01 16:39:42 +01:00

7 lines
103 B
C

#ifndef __STRBUF_H__
#define __STRBUF_H__
int prefixcmp(const char *str, const char *prefix);
#endif