changed the function postfix 'with_limit' to 'limited'
This commit is contained in:
parent
c5f6a70e2d
commit
6d53e357bd
@ -511,7 +511,7 @@ MOO_EXPORT moo_oow_t moo_count_ucstr (
|
|||||||
const moo_uch_t* str
|
const moo_uch_t* str
|
||||||
);
|
);
|
||||||
|
|
||||||
MOO_EXPORT moo_oow_t moo_count_ucstr_with_limit (
|
MOO_EXPORT moo_oow_t moo_count_ucstr_limited (
|
||||||
const moo_uch_t* str,
|
const moo_uch_t* str,
|
||||||
moo_oow_t maxlen
|
moo_oow_t maxlen
|
||||||
);
|
);
|
||||||
@ -520,7 +520,7 @@ MOO_EXPORT moo_oow_t moo_count_bcstr (
|
|||||||
const moo_bch_t* str
|
const moo_bch_t* str
|
||||||
);
|
);
|
||||||
|
|
||||||
MOO_EXPORT moo_oow_t moo_count_bcstr_with_limit (
|
MOO_EXPORT moo_oow_t moo_count_bcstr_limited (
|
||||||
const moo_bch_t* str,
|
const moo_bch_t* str,
|
||||||
moo_oow_t maxlen
|
moo_oow_t maxlen
|
||||||
);
|
);
|
||||||
|
@ -315,7 +315,7 @@ moo_oow_t moo_count_ucstr (const moo_uch_t* str)
|
|||||||
return ptr - str;
|
return ptr - str;
|
||||||
}
|
}
|
||||||
|
|
||||||
moo_oow_t moo_count_ucstr_with_limit (const moo_uch_t* str, moo_oow_t maxlen)
|
moo_oow_t moo_count_ucstr_limited (const moo_uch_t* str, moo_oow_t maxlen)
|
||||||
{
|
{
|
||||||
moo_oow_t i;
|
moo_oow_t i;
|
||||||
for (i = 0; i < maxlen; 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;
|
return ptr - str;
|
||||||
}
|
}
|
||||||
|
|
||||||
moo_oow_t moo_count_bcstr_with_limit (const moo_bch_t* str, moo_oow_t maxlen)
|
moo_oow_t moo_count_bcstr_limited (const moo_bch_t* str, moo_oow_t maxlen)
|
||||||
{
|
{
|
||||||
moo_oow_t i;
|
moo_oow_t i;
|
||||||
for (i = 0; i < maxlen; i++)
|
for (i = 0; i < maxlen; i++)
|
||||||
|
Loading…
Reference in New Issue
Block a user