From: hgn Date: Mon, 23 Dec 2024 17:41:23 +0000 (+0000) Subject: Add vg_str_eq to header X-Git-Url: https://harrygodden.com/git/?a=commitdiff_plain;h=fec411d9d30be3463552338b074b02004093ae6e;p=vg.git Add vg_str_eq to header --- diff --git a/vg_string.h b/vg_string.h index 01caf7d..b8aa209 100644 --- a/vg_string.h +++ b/vg_string.h @@ -66,3 +66,5 @@ int vg_strdjb2_eq( const char *s1, u32 h1, const char *s2, u32 h2 ); #define VG_STRDJB2_EQ( CS1, S2, H2 ) \ vg_strdjb2_eq( CS1, vg_strdjb2(CS1), S2, H2 ) + +bool vg_str_eq( const char *s1, const char *s2 );