mirror of
https://github.com/clearlinux/kvmtool.git
synced 2026-08-29 20:54:03 +00:00
98ee79f433
- 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>
7 lines
103 B
C
7 lines
103 B
C
#ifndef __STRBUF_H__
|
|
#define __STRBUF_H__
|
|
|
|
int prefixcmp(const char *str, const char *prefix);
|
|
|
|
#endif
|