embed.fnc: Change NULLOK to NN for several functions

Inspection showed these were wrongly categorized
This commit is contained in:
Karl Williamson 2025-09-27 18:46:30 -06:00
parent e8829bd6d6
commit 43eccc533f
2 changed files with 8 additions and 8 deletions

View File

@ -3687,26 +3687,26 @@ Cp |UV |to_uni_upper |UV c \
|NN STRLEN *lenp
Cp |UV |to_utf8_fold_flags_ \
|NN const U8 *p \
|NULLOK const U8 *e \
|NN const U8 *e \
|NN U8 *ustrp \
|NULLOK STRLEN *lenp \
|U8 flags
Cp |UV |to_utf8_lower_flags_ \
|NN const U8 *p \
|NULLOK const U8 *e \
|NN const U8 *e \
|NN U8 *ustrp \
|NULLOK STRLEN *lenp \
|bool flags
Cp |UV |to_utf8_title_flags_ \
|NN const U8 *p \
|NULLOK const U8 *e \
|NN const U8 *e \
|NN U8 *ustrp \
|NULLOK STRLEN *lenp \
|bool flags
Cp |UV |to_utf8_upper_flags_ \
|NN const U8 *p \
|NULLOK const U8 *e \
|NN const U8 *e \
|NN U8 *ustrp \
|NULLOK STRLEN *lenp \
|bool flags

8
proto.h generated
View File

@ -5296,22 +5296,22 @@ Perl_to_uni_upper(pTHX_ UV c, U8 *p, STRLEN *lenp);
PERL_CALLCONV UV
Perl_to_utf8_fold_flags_(pTHX_ const U8 *p, const U8 *e, U8 *ustrp, STRLEN *lenp, U8 flags);
#define PERL_ARGS_ASSERT_TO_UTF8_FOLD_FLAGS_ \
assert(p); assert(ustrp)
assert(p); assert(e); assert(ustrp)
PERL_CALLCONV UV
Perl_to_utf8_lower_flags_(pTHX_ const U8 *p, const U8 *e, U8 *ustrp, STRLEN *lenp, bool flags);
#define PERL_ARGS_ASSERT_TO_UTF8_LOWER_FLAGS_ \
assert(p); assert(ustrp)
assert(p); assert(e); assert(ustrp)
PERL_CALLCONV UV
Perl_to_utf8_title_flags_(pTHX_ const U8 *p, const U8 *e, U8 *ustrp, STRLEN *lenp, bool flags);
#define PERL_ARGS_ASSERT_TO_UTF8_TITLE_FLAGS_ \
assert(p); assert(ustrp)
assert(p); assert(e); assert(ustrp)
PERL_CALLCONV UV
Perl_to_utf8_upper_flags_(pTHX_ const U8 *p, const U8 *e, U8 *ustrp, STRLEN *lenp, bool flags);
#define PERL_ARGS_ASSERT_TO_UTF8_UPPER_FLAGS_ \
assert(p); assert(ustrp)
assert(p); assert(e); assert(ustrp)
PERL_CALLCONV bool
Perl_try_amagic_bin(pTHX_ int method, int flags);