Add string compare functions

This commit is contained in:
2025-11-09 19:11:54 +03:00
parent 0fc57128fb
commit aa402de368
5 changed files with 181 additions and 0 deletions

View File

@@ -116,4 +116,12 @@ uint64_t BH_StringToInt64u(const char *string,
char *BH_StringDup(const char *string);
int BH_StringCompare(const char *s1,
const char *s2);
int BH_StringCompareCaseless(const char *s1,
const char *s2);
#endif /* BH_STRING_H */