diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-01-02 23:41:21 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-01-02 23:41:21 +0000 |
commit | 740cce10afff4bec3346f61ab3d0f7bfa424948c (patch) | |
tree | 83c031300e2326e8d8ae399e088c4d3a42472a13 /sv.h | |
parent | e350b669f3dadb9da757b62a20659cbc7eca2190 (diff) | |
download | perl-740cce10afff4bec3346f61ab3d0f7bfa424948c.tar.gz |
Add a new function newSVpvn_flags(), which takes a third parameter of
flag bits. Right now the only flag bit is SVf_UTF8, which will call
SvUTF8_on() on the new SV for you. Provide a wrapper newSVpvn_utf8(),
which takes a boolean, and passes in SVf_UTF8 if that is true.
Refactor the core to use it where possible. It makes the source code
clearer and smaller, but seems to be swings and roundabouts on object
code size.
p4raw-id: //depot/perl@32807
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -1911,6 +1911,17 @@ struct clone_params { }; /* +=for apidoc Am|SV*|newSVpvn_utf8|NULLOK const char* s|STRLEN len|U32 utf8 + +Creates a new SV and copies a string into it. If utf8 is true, calls +C<SvUTF8_on> on the new SV. Implemented as a wrapper around C<newSVpvn_flags>. + +=cut +*/ + +#define newSVpvn_utf8(s, len, u) newSVpvn_flags((s), (len), (u) ? SVf_UTF8 : 0) + +/* * Local variables: * c-indentation-style: bsd * c-basic-offset: 4 |