mirror of
https://github.com/Perl/perl5.git
synced 2026-01-26 16:39:36 +00:00
embed.fnc: Change NULLOK to NN for several functions
Inspection showed these were wrongly categorized
This commit is contained in:
parent
e8829bd6d6
commit
43eccc533f
@ -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
8
proto.h
generated
@ -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);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user