bstr: add bstr_equals/bstr_equals0 utility function

This commit is contained in:
wm4 2012-09-29 18:08:47 +02:00
parent d079395c5d
commit 7c04542e09
1 changed files with 10 additions and 0 deletions

10
bstr.h
View File

@ -142,6 +142,16 @@ static inline int bstrcmp0(struct bstr str1, const char *str2)
return bstrcmp(str1, bstr0(str2));
}
static inline bool bstr_equals(struct bstr str1, struct bstr str2)
{
return bstrcmp(str1, str2) == 0;
}
static inline bool bstr_equals0(struct bstr str1, const char *str2)
{
return bstrcmp(str1, bstr0(str2)) == 0;
}
static inline int bstrcasecmp0(struct bstr str1, const char *str2)
{
return bstrcasecmp(str1, bstr0(str2));