xref: /kvmtool/util/strbuf.c (revision 98ee79f4333acbe273095d4cfea473f8ee0d3a15)
1 
2 /* user defined headers */
3 #include <kvm/strbuf.h>
4 
5 int prefixcmp(const char *str, const char *prefix)
6 {
7 	for (; ; str++, prefix++) {
8 		if (!*prefix)
9 			return 0;
10 		else if (*str != *prefix)
11 			return (unsigned char)*prefix - (unsigned char)*str;
12 	}
13 }
14