From c5f6a70e2dc947cb755a8b147ab8d3713db9d7de Mon Sep 17 00:00:00 2001 From: "hyunghwan.chung" Date: Mon, 25 Nov 2019 07:03:13 +0000 Subject: [PATCH] renamed moo_count_bcstrl() to moo_count_bcstr_with_limit() renamed moo_count_ucstrl() to moo_count_ucstr_with_limit() --- moo/lib/moo-utl.h | 4 ++-- moo/lib/utl.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/moo/lib/moo-utl.h b/moo/lib/moo-utl.h index 9e2abca..d1c2911 100644 --- a/moo/lib/moo-utl.h +++ b/moo/lib/moo-utl.h @@ -511,7 +511,7 @@ MOO_EXPORT moo_oow_t moo_count_ucstr ( const moo_uch_t* str ); -MOO_EXPORT moo_oow_t moo_count_ucstrl ( +MOO_EXPORT moo_oow_t moo_count_ucstr_with_limit ( const moo_uch_t* str, moo_oow_t maxlen ); @@ -520,7 +520,7 @@ MOO_EXPORT moo_oow_t moo_count_bcstr ( const moo_bch_t* str ); -MOO_EXPORT moo_oow_t moo_count_bcstrl ( +MOO_EXPORT moo_oow_t moo_count_bcstr_with_limit ( const moo_bch_t* str, moo_oow_t maxlen ); diff --git a/moo/lib/utl.c b/moo/lib/utl.c index 5760776..2e52d4f 100644 --- a/moo/lib/utl.c +++ b/moo/lib/utl.c @@ -315,7 +315,7 @@ moo_oow_t moo_count_ucstr (const moo_uch_t* str) return ptr - str; } -moo_oow_t moo_count_ucstrl (const moo_uch_t* str, moo_oow_t maxlen) +moo_oow_t moo_count_ucstr_with_limit (const moo_uch_t* str, moo_oow_t maxlen) { moo_oow_t i; for (i = 0; i < maxlen; i++) @@ -332,7 +332,7 @@ moo_oow_t moo_count_bcstr (const moo_bch_t* str) return ptr - str; } -moo_oow_t moo_count_bcstrl (const moo_bch_t* str, moo_oow_t maxlen) +moo_oow_t moo_count_bcstr_with_limit (const moo_bch_t* str, moo_oow_t maxlen) { moo_oow_t i; for (i = 0; i < maxlen; i++)