aboutsummaryrefslogtreecommitdiff
path: root/lib/mbstring/u8hassfx.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mbstring/u8hassfx.c')
-rw-r--r--lib/mbstring/u8hassfx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mbstring/u8hassfx.c b/lib/mbstring/u8hassfx.c
index 8ea4456..ac72778 100644
--- a/lib/mbstring/u8hassfx.c
+++ b/lib/mbstring/u8hassfx.c
@@ -4,7 +4,7 @@
#include "mbstring.h"
bool
-u8hassfx(struct u8view sv, struct u8view sfx)
+u8hassfx(u8view_t sv, u8view_t sfx)
{
return sv.len >= sfx.len && memeq(sv.p + sv.len - sfx.len, sfx.p, sfx.len);
}