From e18b715f3f60e8a8ce59da10e871206717772bbe Mon Sep 17 00:00:00 2001 From: Landon Curt Noll Date: Sat, 19 Aug 2023 18:20:15 -0700 Subject: [PATCH] fix function decls for stringrel() and stringcaserel() --- value.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/value.h b/value.h index 2b7e317..841382e 100644 --- a/value.h +++ b/value.h @@ -568,8 +568,8 @@ E_FUNC long stringcontent(STRING *s); E_FUNC long stringlowbit(STRING *s); E_FUNC long stringhighbit(STRING *s); E_FUNC BOOL stringcmp(STRING *, STRING *); -E_FUNC BOOL stringrel(STRING *, STRING *); -E_FUNC BOOL stringcaserel(STRING *, STRING *); +E_FUNC FLAG stringrel(STRING *, STRING *); +E_FUNC FLAG stringcaserel(STRING *, STRING *); E_FUNC int stringbit(STRING *, long); E_FUNC BOOL stringtest(STRING *); E_FUNC int stringsetbit(STRING *, long, BOOL);