3 perlapi - autogenerated documentation for the perl public API
7 This file contains the documentation of the perl public API generated by
8 embed.pl, specifically a listing of functions, macros, flags, and variables
9 that may be used by extension writers. The interfaces of any functions that
10 are not listed here are subject to change without notice. For this reason,
11 blindly using functions listed in proto.h is to be avoided when writing
14 Note that all Perl API global variables must be referenced with the C<PL_>
15 prefix. Some macros are provided for compatibility with the older,
16 unadorned names, but this support may be disabled in a future release.
18 The listing is alphabetical, case insensitive.
27 A backward-compatible version of C<GIMME_V> which can only return
28 C<G_SCALAR> or C<G_ARRAY>; in a void context, it returns C<G_SCALAR>.
29 Deprecated. Use C<GIMME_V> instead.
38 The XSUB-writer's equivalent to Perl's C<wantarray>. Returns C<G_VOID>,
39 C<G_SCALAR> or C<G_ARRAY> for void, scalar or list context,
49 Used to indicate list context. See C<GIMME_V>, C<GIMME> and
57 Indicates that arguments returned from a callback should be discarded. See
65 Used to force a Perl C<eval> wrapper around a callback. See
73 Indicates that no arguments are being sent to a callback. See
81 Used to indicate scalar context. See C<GIMME_V>, C<GIMME>, and
89 Used to indicate void context. See C<GIMME_V> and L<perlcall>.
97 =head1 Array Manipulation Functions
103 Same as C<av_len()>. Deprecated, use C<av_len()> instead.
112 Clears an array, making it empty. Does not free the memory used by the
115 void av_clear(AV* ar)
122 Deletes the element indexed by C<key> from the array. Returns the
123 deleted element. C<flags> is currently ignored.
125 SV* av_delete(AV* ar, I32 key, I32 flags)
132 Returns true if the element indexed by C<key> has been initialized.
134 This relies on the fact that uninitialized array elements are set to
137 bool av_exists(AV* ar, I32 key)
144 Pre-extend an array. The C<key> is the index to which the array should be
147 void av_extend(AV* ar, I32 key)
154 Returns the SV at the specified index in the array. The C<key> is the
155 index. If C<lval> is set then the fetch will be part of a store. Check
156 that the return value is non-null before dereferencing it to a C<SV*>.
158 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for
159 more information on how to use this function on tied arrays.
161 SV** av_fetch(AV* ar, I32 key, I32 lval)
168 Ensure than an array has a given number of elements, equivalent to
169 Perl's C<$#array = $fill;>.
171 void av_fill(AV* ar, I32 fill)
178 Returns the highest index in the array. Returns -1 if the array is
188 Creates a new AV and populates it with a list of SVs. The SVs are copied
189 into the array, so they may be freed after the call to av_make. The new AV
190 will have a reference count of 1.
192 AV* av_make(I32 size, SV** svp)
199 Pops an SV off the end of the array. Returns C<&PL_sv_undef> if the array
209 Pushes an SV onto the end of the array. The array will grow automatically
210 to accommodate the addition.
212 void av_push(AV* ar, SV* val)
219 Shifts an SV off the beginning of the array.
228 Stores an SV in an array. The array index is specified as C<key>. The
229 return value will be NULL if the operation failed or if the value did not
230 need to be actually stored within the array (as in the case of tied
231 arrays). Otherwise it can be dereferenced to get the original C<SV*>. Note
232 that the caller is responsible for suitably incrementing the reference
233 count of C<val> before the call, and decrementing it if the function
236 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for
237 more information on how to use this function on tied arrays.
239 SV** av_store(AV* ar, I32 key, SV* val)
246 Undefines the array. Frees the memory used by the array itself.
248 void av_undef(AV* ar)
255 Unshift the given number of C<undef> values onto the beginning of the
256 array. The array will grow automatically to accommodate the addition. You
257 must then use C<av_store> to assign values to these new elements.
259 void av_unshift(AV* ar, I32 num)
266 Returns the AV of the specified Perl array. If C<create> is set and the
267 Perl variable does not exist then it will be created. If C<create> is not
268 set and the variable does not exist then NULL is returned.
270 NOTE: the perl_ form of this function is deprecated.
272 AV* get_av(const char* name, I32 create)
279 Creates a new AV. The reference count is set to 1.
296 Sort an array. Here is an example:
298 sortsv(AvARRAY(av), av_len(av)+1, Perl_sv_cmp_locale);
300 void sortsv(SV ** array, size_t num_elts, SVCOMPARE_t cmp)
303 Found in file pp_sort.c
308 =head1 Callback Functions
314 Performs a callback to the specified Perl sub. See L<perlcall>.
316 NOTE: the perl_ form of this function is deprecated.
318 I32 call_argv(const char* sub_name, I32 flags, char** argv)
325 Performs a callback to the specified Perl method. The blessed object must
326 be on the stack. See L<perlcall>.
328 NOTE: the perl_ form of this function is deprecated.
330 I32 call_method(const char* methname, I32 flags)
337 Performs a callback to the specified Perl sub. See L<perlcall>.
339 NOTE: the perl_ form of this function is deprecated.
341 I32 call_pv(const char* sub_name, I32 flags)
348 Performs a callback to the Perl sub whose name is in the SV. See
351 NOTE: the perl_ form of this function is deprecated.
353 I32 call_sv(SV* sv, I32 flags)
360 Opening bracket on a callback. See C<LEAVE> and L<perlcall>.
365 Found in file scope.h
369 Tells Perl to C<eval> the given string and return an SV* result.
371 NOTE: the perl_ form of this function is deprecated.
373 SV* eval_pv(const char* p, I32 croak_on_error)
380 Tells Perl to C<eval> the string in the SV.
382 NOTE: the perl_ form of this function is deprecated.
384 I32 eval_sv(SV* sv, I32 flags)
391 Closing bracket for temporaries on a callback. See C<SAVETMPS> and
397 Found in file scope.h
401 Closing bracket on a callback. See C<ENTER> and L<perlcall>.
406 Found in file scope.h
410 Opening bracket for temporaries on a callback. See C<FREETMPS> and
416 Found in file scope.h
421 =head1 Character classes
427 Returns a boolean indicating whether the C C<char> is an ASCII alphanumeric
428 character (including underscore) or digit.
430 bool isALNUM(char ch)
433 Found in file handy.h
437 Returns a boolean indicating whether the C C<char> is an ASCII alphabetic
440 bool isALPHA(char ch)
443 Found in file handy.h
447 Returns a boolean indicating whether the C C<char> is an ASCII
450 bool isDIGIT(char ch)
453 Found in file handy.h
457 Returns a boolean indicating whether the C C<char> is a lowercase
460 bool isLOWER(char ch)
463 Found in file handy.h
467 Returns a boolean indicating whether the C C<char> is whitespace.
469 bool isSPACE(char ch)
472 Found in file handy.h
476 Returns a boolean indicating whether the C C<char> is an uppercase
479 bool isUPPER(char ch)
482 Found in file handy.h
486 Converts the specified character to lowercase.
488 char toLOWER(char ch)
491 Found in file handy.h
495 Converts the specified character to uppercase.
497 char toUPPER(char ch)
500 Found in file handy.h
505 =head1 Cloning an interpreter
511 Create and return a new interpreter by cloning the current one.
513 PerlInterpreter* perl_clone(PerlInterpreter* interp, UV flags)
521 =head1 CV Manipulation Functions
527 Returns the stash of the CV.
536 Returns the CV of the specified Perl subroutine. If C<create> is set and
537 the Perl subroutine does not exist then it will be declared (which has the
538 same effect as saying C<sub name;>). If C<create> is not set and the
539 subroutine does not exist then NULL is returned.
541 NOTE: the perl_ form of this function is deprecated.
543 CV* get_cv(const char* name, I32 create)
559 =head1 Embedding Functions
565 Loads the module whose name is pointed to by the string part of name.
566 Note that the actual module name, not its filename, should be given.
567 Eg, "Foo::Bar" instead of "Foo/Bar.pm". flags can be any of
568 PERL_LOADMOD_DENY, PERL_LOADMOD_NOIMPORT, or PERL_LOADMOD_IMPORT_OPS
569 (or 0 for no flags). ver, if specified, provides version semantics
570 similar to C<use Foo::Bar VERSION>. The optional trailing SV*
571 arguments can be used to specify arguments to the module's import()
572 method, similar to C<use Foo::Bar VERSION LIST>.
574 void load_module(U32 flags, SV* name, SV* ver, ...)
581 Allocates a new Perl interpreter. See L<perlembed>.
583 PerlInterpreter* perl_alloc()
590 Initializes a new Perl interpreter. See L<perlembed>.
592 void perl_construct(PerlInterpreter* interp)
599 Shuts down a Perl interpreter. See L<perlembed>.
601 int perl_destruct(PerlInterpreter* interp)
608 Releases a Perl interpreter. See L<perlembed>.
610 void perl_free(PerlInterpreter* interp)
617 Tells a Perl interpreter to parse a Perl script. See L<perlembed>.
619 int perl_parse(PerlInterpreter* interp, XSINIT_t xsinit, int argc, char** argv, char** env)
626 Tells a Perl interpreter to run. See L<perlembed>.
628 int perl_run(PerlInterpreter* interp)
635 Tells Perl to C<require> the file named by the string argument. It is
636 analogous to the Perl code C<eval "require '$file'">. It's even
637 implemented that way; consider using Perl_load_module instead.
639 NOTE: the perl_ form of this function is deprecated.
641 void require_pv(const char* pv)
649 =head1 Functions in file pp_pack.c
656 The engine implementing pack() Perl function.
658 void pack_cat(SV *cat, char *pat, char *patend, SV **beglist, SV **endlist, SV ***next_in_list, U32 flags)
661 Found in file pp_pack.c
665 The engine implementing unpack() Perl function.
667 I32 unpack_str(char *pat, char *patend, char *s, char *strbeg, char *strend, char **new_s, I32 ocnt, U32 flags)
670 Found in file pp_pack.c
675 =head1 Global Variables
681 C<PL_modglobal> is a general purpose, interpreter global HV for use by
682 extensions that need to keep information on a per-interpreter basis.
683 In a pinch, it can also be used as a symbol table for extensions
684 to share data among each other. It is a good idea to use keys
685 prefixed by the package name of the extension that owns the data.
690 Found in file intrpvar.h
694 A convenience variable which is typically used with C<SvPV> when one
695 doesn't care about the length of the string. It is usually more efficient
696 to either declare a local variable and use that instead or to use the
702 Found in file thrdvar.h
706 This is the C<false> SV. See C<PL_sv_yes>. Always refer to this as
712 Found in file intrpvar.h
716 This is the C<undef> SV. Always refer to this as C<&PL_sv_undef>.
721 Found in file intrpvar.h
725 This is the C<true> SV. See C<PL_sv_no>. Always refer to this as
731 Found in file intrpvar.h
742 Return the SV from the GV.
751 Returns the glob with the given C<name> and a defined subroutine or
752 C<NULL>. The glob lives in the given C<stash>, or in the stashes
753 accessible via @ISA and UNIVERSAL::.
755 The argument C<level> should be either 0 or -1. If C<level==0>, as a
756 side-effect creates a glob with the given C<name> in the given C<stash>
757 which in the case of success contains an alias for the subroutine, and sets
758 up caching info for this glob. Similarly for all the searched stashes.
760 This function grants C<"SUPER"> token as a postfix of the stash name. The
761 GV returned from C<gv_fetchmeth> may be a method cache entry, which is not
762 visible to Perl code. So when calling C<call_sv>, you should not use
763 the GV directly; instead, you should use the method's CV, which can be
764 obtained from the GV with the C<GvCV> macro.
766 GV* gv_fetchmeth(HV* stash, const char* name, STRLEN len, I32 level)
773 See L<gv_fetchmethod_autoload>.
775 GV* gv_fetchmethod(HV* stash, const char* name)
780 =item gv_fetchmethod_autoload
782 Returns the glob which contains the subroutine to call to invoke the method
783 on the C<stash>. In fact in the presence of autoloading this may be the
784 glob for "AUTOLOAD". In this case the corresponding variable $AUTOLOAD is
787 The third parameter of C<gv_fetchmethod_autoload> determines whether
788 AUTOLOAD lookup is performed if the given method is not present: non-zero
789 means yes, look for AUTOLOAD; zero means no, don't look for AUTOLOAD.
790 Calling C<gv_fetchmethod> is equivalent to calling C<gv_fetchmethod_autoload>
791 with a non-zero C<autoload> parameter.
793 These functions grant C<"SUPER"> token as a prefix of the method name. Note
794 that if you want to keep the returned glob for a long time, you need to
795 check for it being "AUTOLOAD", since at the later time the call may load a
796 different subroutine due to $AUTOLOAD changing its value. Use the glob
797 created via a side effect to do this.
799 These functions have the same side-effects and as C<gv_fetchmeth> with
800 C<level==0>. C<name> should be writable if contains C<':'> or C<'
801 ''>. The warning against passing the GV returned by C<gv_fetchmeth> to
802 C<call_sv> apply equally to these functions.
804 GV* gv_fetchmethod_autoload(HV* stash, const char* name, I32 autoload)
809 =item gv_fetchmeth_autoload
811 Same as gv_fetchmeth(), but looks for autoloaded subroutines too.
812 Returns a glob for the subroutine.
814 For an autoloaded subroutine without a GV, will create a GV even
815 if C<level < 0>. For an autoloaded subroutine without a stub, GvCV()
816 of the result may be zero.
818 GV* gv_fetchmeth_autoload(HV* stash, const char* name, STRLEN len, I32 level)
825 Returns a pointer to the stash for a specified package. C<name> should
826 be a valid UTF-8 string. If C<create> is set then the package will be
827 created if it does not already exist. If C<create> is not set and the
828 package does not exist then NULL is returned.
830 HV* gv_stashpv(const char* name, I32 create)
837 Returns a pointer to the stash for a specified package, which must be a
838 valid UTF-8 string. See C<gv_stashpv>.
840 HV* gv_stashsv(SV* sv, I32 create)
854 This flag, used in the length slot of hash entries and magic structures,
855 specifies the structure contains an C<SV*> pointer where a C<char*> pointer
856 is to be expected. (For information only--not to be used).
864 Null character pointer.
866 Found in file handy.h
873 Found in file handy.h
878 =head1 Hash Manipulation Functions
884 Returns the HV of the specified Perl hash. If C<create> is set and the
885 Perl variable does not exist then it will be created. If C<create> is not
886 set and the variable does not exist then NULL is returned.
888 NOTE: the perl_ form of this function is deprecated.
890 HV* get_hv(const char* name, I32 create)
897 Returns the computed hash stored in the hash entry.
906 Returns the actual pointer stored in the key slot of the hash entry. The
907 pointer may be either C<char*> or C<SV*>, depending on the value of
908 C<HeKLEN()>. Can be assigned to. The C<HePV()> or C<HeSVKEY()> macros are
909 usually preferable for finding the value of a key.
918 If this is negative, and amounts to C<HEf_SVKEY>, it indicates the entry
919 holds an C<SV*> key. Otherwise, holds the actual length of the key. Can
920 be assigned to. The C<HePV()> macro is usually preferable for finding key
923 STRLEN HeKLEN(HE* he)
930 Returns the key slot of the hash entry as a C<char*> value, doing any
931 necessary dereferencing of possibly C<SV*> keys. The length of the string
932 is placed in C<len> (this is a macro, so do I<not> use C<&len>). If you do
933 not care about what the length of the key is, you may use the global
934 variable C<PL_na>, though this is rather less efficient than using a local
935 variable. Remember though, that hash keys in perl are free to contain
936 embedded nulls, so using C<strlen()> or similar is not a good way to find
937 the length of hash keys. This is very similar to the C<SvPV()> macro
938 described elsewhere in this document.
940 char* HePV(HE* he, STRLEN len)
947 Returns the key as an C<SV*>, or C<Nullsv> if the hash entry does not
948 contain an C<SV*> key.
957 Returns the key as an C<SV*>. Will create and return a temporary mortal
958 C<SV*> if the hash entry contains only a C<char*> key.
960 SV* HeSVKEY_force(HE* he)
967 Sets the key to a given C<SV*>, taking care to set the appropriate flags to
968 indicate the presence of an C<SV*> key, and returns the same
971 SV* HeSVKEY_set(HE* he, SV* sv)
978 Returns the value slot (type C<SV*>) stored in the hash entry.
987 Returns the package name of a stash. See C<SvSTASH>, C<CvSTASH>.
989 char* HvNAME(HV* stash)
996 Clears a hash, making it empty.
998 void hv_clear(HV* tb)
1005 Deletes a key/value pair in the hash. The value SV is removed from the
1006 hash and returned to the caller. The C<klen> is the length of the key.
1007 The C<flags> value will normally be zero; if set to G_DISCARD then NULL
1010 SV* hv_delete(HV* tb, const char* key, I32 klen, I32 flags)
1017 Deletes a key/value pair in the hash. The value SV is removed from the
1018 hash and returned to the caller. The C<flags> value will normally be zero;
1019 if set to G_DISCARD then NULL will be returned. C<hash> can be a valid
1020 precomputed hash value, or 0 to ask for it to be computed.
1022 SV* hv_delete_ent(HV* tb, SV* key, I32 flags, U32 hash)
1029 Returns a boolean indicating whether the specified hash key exists. The
1030 C<klen> is the length of the key.
1032 bool hv_exists(HV* tb, const char* key, I32 klen)
1039 Returns a boolean indicating whether the specified hash key exists. C<hash>
1040 can be a valid precomputed hash value, or 0 to ask for it to be
1043 bool hv_exists_ent(HV* tb, SV* key, U32 hash)
1050 Returns the SV which corresponds to the specified key in the hash. The
1051 C<klen> is the length of the key. If C<lval> is set then the fetch will be
1052 part of a store. Check that the return value is non-null before
1053 dereferencing it to an C<SV*>.
1055 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
1056 information on how to use this function on tied hashes.
1058 SV** hv_fetch(HV* tb, const char* key, I32 klen, I32 lval)
1065 Returns the hash entry which corresponds to the specified key in the hash.
1066 C<hash> must be a valid precomputed hash number for the given C<key>, or 0
1067 if you want the function to compute it. IF C<lval> is set then the fetch
1068 will be part of a store. Make sure the return value is non-null before
1069 accessing it. The return value when C<tb> is a tied hash is a pointer to a
1070 static location, so be sure to make a copy of the structure if you need to
1073 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
1074 information on how to use this function on tied hashes.
1076 HE* hv_fetch_ent(HV* tb, SV* key, I32 lval, U32 hash)
1083 Prepares a starting point to traverse a hash table. Returns the number of
1084 keys in the hash (i.e. the same as C<HvKEYS(tb)>). The return value is
1085 currently only meaningful for hashes without tie magic.
1087 NOTE: Before version 5.004_65, C<hv_iterinit> used to return the number of
1088 hash buckets that happen to be in use. If you still need that esoteric
1089 value, you can get it through the macro C<HvFILL(tb)>.
1091 I32 hv_iterinit(HV* tb)
1098 Returns the key from the current position of the hash iterator. See
1101 char* hv_iterkey(HE* entry, I32* retlen)
1108 Returns the key as an C<SV*> from the current position of the hash
1109 iterator. The return value will always be a mortal copy of the key. Also
1112 SV* hv_iterkeysv(HE* entry)
1119 Returns entries from a hash iterator. See C<hv_iterinit>.
1121 HE* hv_iternext(HV* tb)
1128 Performs an C<hv_iternext>, C<hv_iterkey>, and C<hv_iterval> in one
1131 SV* hv_iternextsv(HV* hv, char** key, I32* retlen)
1138 Returns the value from the current position of the hash iterator. See
1141 SV* hv_iterval(HV* tb, HE* entry)
1148 Adds magic to a hash. See C<sv_magic>.
1150 void hv_magic(HV* hv, GV* gv, int how)
1157 Stores an SV in a hash. The hash key is specified as C<key> and C<klen> is
1158 the length of the key. The C<hash> parameter is the precomputed hash
1159 value; if it is zero then Perl will compute it. The return value will be
1160 NULL if the operation failed or if the value did not need to be actually
1161 stored within the hash (as in the case of tied hashes). Otherwise it can
1162 be dereferenced to get the original C<SV*>. Note that the caller is
1163 responsible for suitably incrementing the reference count of C<val> before
1164 the call, and decrementing it if the function returned NULL.
1166 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
1167 information on how to use this function on tied hashes.
1169 SV** hv_store(HV* tb, const char* key, I32 klen, SV* val, U32 hash)
1176 Stores C<val> in a hash. The hash key is specified as C<key>. The C<hash>
1177 parameter is the precomputed hash value; if it is zero then Perl will
1178 compute it. The return value is the new hash entry so created. It will be
1179 NULL if the operation failed or if the value did not need to be actually
1180 stored within the hash (as in the case of tied hashes). Otherwise the
1181 contents of the return value can be accessed using the C<He?> macros
1182 described here. Note that the caller is responsible for suitably
1183 incrementing the reference count of C<val> before the call, and
1184 decrementing it if the function returned NULL.
1186 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
1187 information on how to use this function on tied hashes.
1189 HE* hv_store_ent(HV* tb, SV* key, SV* val, U32 hash)
1198 void hv_undef(HV* tb)
1205 Creates a new HV. The reference count is set to 1.
1223 =head1 Magical Functions
1229 Clear something magical that the SV represents. See C<sv_magic>.
1231 int mg_clear(SV* sv)
1238 Copies the magic from one SV to another. See C<sv_magic>.
1240 int mg_copy(SV* sv, SV* nsv, const char* key, I32 klen)
1247 Finds the magic pointer for type matching the SV. See C<sv_magic>.
1249 MAGIC* mg_find(SV* sv, int type)
1256 Free any magic storage used by the SV. See C<sv_magic>.
1265 Do magic after a value is retrieved from the SV. See C<sv_magic>.
1274 Report on the SV's length. See C<sv_magic>.
1276 U32 mg_length(SV* sv)
1283 Turns on the magical status of an SV. See C<sv_magic>.
1285 void mg_magical(SV* sv)
1292 Do magic after a value is assigned to the SV. See C<sv_magic>.
1301 Invokes C<mg_get> on an SV if it has 'get' magic. This macro evaluates its
1302 argument more than once.
1304 void SvGETMAGIC(SV* sv)
1311 Arranges for a mutual exclusion lock to be obtained on sv if a suitable module
1321 Invokes C<mg_set> on an SV if it has 'set' magic. This macro evaluates its
1322 argument more than once.
1324 void SvSETMAGIC(SV* sv)
1331 Like C<SvSetSV>, but does any set magic required afterwards.
1333 void SvSetMagicSV(SV* dsb, SV* ssv)
1338 =item SvSetMagicSV_nosteal
1340 Like C<SvSetMagicSV>, but does any set magic required afterwards.
1342 void SvSetMagicSV_nosteal(SV* dsv, SV* ssv)
1349 Calls C<sv_setsv> if dsv is not the same as ssv. May evaluate arguments
1352 void SvSetSV(SV* dsb, SV* ssv)
1357 =item SvSetSV_nosteal
1359 Calls a non-destructive version of C<sv_setsv> if dsv is not the same as
1360 ssv. May evaluate arguments more than once.
1362 void SvSetSV_nosteal(SV* dsv, SV* ssv)
1369 Arranges for sv to be shared between threads if a suitable module
1372 void SvSHARE(SV* sv)
1380 =head1 Memory Management
1386 The XSUB-writer's interface to the C C<memcpy> function. The C<src> is the
1387 source, C<dest> is the destination, C<nitems> is the number of items, and C<type> is
1388 the type. May fail on overlapping copies. See also C<Move>.
1390 void Copy(void* src, void* dest, int nitems, type)
1393 Found in file handy.h
1397 The XSUB-writer's interface to the C C<memmove> function. The C<src> is the
1398 source, C<dest> is the destination, C<nitems> is the number of items, and C<type> is
1399 the type. Can do overlapping moves. See also C<Copy>.
1401 void Move(void* src, void* dest, int nitems, type)
1404 Found in file handy.h
1408 The XSUB-writer's interface to the C C<malloc> function.
1410 void New(int id, void* ptr, int nitems, type)
1413 Found in file handy.h
1417 The XSUB-writer's interface to the C C<malloc> function, with
1420 void Newc(int id, void* ptr, int nitems, type, cast)
1423 Found in file handy.h
1427 Creates a new SV. A non-zero C<len> parameter indicates the number of
1428 bytes of preallocated string space the SV should have. An extra byte for a
1429 tailing NUL is also reserved. (SvPOK is not set for the SV even if string
1430 space is allocated.) The reference count for the new SV is set to 1.
1431 C<id> is an integer id between 0 and 1299 (used to identify leaks).
1434 SV* NEWSV(int id, STRLEN len)
1437 Found in file handy.h
1441 The XSUB-writer's interface to the C C<malloc> function. The allocated
1442 memory is zeroed with C<memzero>.
1444 void Newz(int id, void* ptr, int nitems, type)
1447 Found in file handy.h
1451 The XSUB-writer's interface to the C C<realloc> function.
1453 void Renew(void* ptr, int nitems, type)
1456 Found in file handy.h
1460 The XSUB-writer's interface to the C C<realloc> function, with
1463 void Renewc(void* ptr, int nitems, type, cast)
1466 Found in file handy.h
1470 The XSUB-writer's interface to the C C<free> function.
1472 void Safefree(void* ptr)
1475 Found in file handy.h
1479 Copy a string to a safe spot. This does not use an SV.
1481 char* savepv(const char* sv)
1484 Found in file util.c
1488 Copy a string to a safe spot. The C<len> indicates number of bytes to
1489 copy. If pointer is NULL allocate space for a string of size specified.
1490 This does not use an SV.
1492 char* savepvn(const char* sv, I32 len)
1495 Found in file util.c
1499 Copy a string to a safe spot in memory shared between threads.
1500 This does not use an SV.
1502 char* savesharedpv(const char* sv)
1505 Found in file util.c
1509 This is an architecture-independent macro to copy one structure to another.
1511 void StructCopy(type src, type dest, type)
1514 Found in file handy.h
1518 The XSUB-writer's interface to the C C<memzero> function. The C<dest> is the
1519 destination, C<nitems> is the number of items, and C<type> is the type.
1521 void Zero(void* dest, int nitems, type)
1524 Found in file handy.h
1529 =head1 Miscellaneous Functions
1535 Analyses the string in order to make fast searches on it using fbm_instr()
1536 -- the Boyer-Moore algorithm.
1538 void fbm_compile(SV* sv, U32 flags)
1541 Found in file util.c
1545 Returns the location of the SV in the string delimited by C<str> and
1546 C<strend>. It returns C<Nullch> if the string can't be found. The C<sv>
1547 does not have to be fbm_compiled, but the search will not be as fast
1550 char* fbm_instr(unsigned char* big, unsigned char* bigend, SV* littlesv, U32 flags)
1553 Found in file util.c
1557 Takes a sprintf-style format pattern and conventional
1558 (non-SV) arguments and returns the formatted string.
1560 (char *) Perl_form(pTHX_ const char* pat, ...)
1562 can be used any place a string (char *) is required:
1564 char * s = Perl_form("%d.%d",major,minor);
1566 Uses a single private buffer so if you want to format several strings you
1567 must explicitly copy the earlier strings away (and free the copies when you
1570 char* form(const char* pat, ...)
1573 Found in file util.c
1577 Fill the sv with current working directory
1579 int getcwd_sv(SV* sv)
1582 Found in file util.c
1586 Test two strings to see if they are equal. Returns true or false.
1588 bool strEQ(char* s1, char* s2)
1591 Found in file handy.h
1595 Test two strings to see if the first, C<s1>, is greater than or equal to
1596 the second, C<s2>. Returns true or false.
1598 bool strGE(char* s1, char* s2)
1601 Found in file handy.h
1605 Test two strings to see if the first, C<s1>, is greater than the second,
1606 C<s2>. Returns true or false.
1608 bool strGT(char* s1, char* s2)
1611 Found in file handy.h
1615 Test two strings to see if the first, C<s1>, is less than or equal to the
1616 second, C<s2>. Returns true or false.
1618 bool strLE(char* s1, char* s2)
1621 Found in file handy.h
1625 Test two strings to see if the first, C<s1>, is less than the second,
1626 C<s2>. Returns true or false.
1628 bool strLT(char* s1, char* s2)
1631 Found in file handy.h
1635 Test two strings to see if they are different. Returns true or
1638 bool strNE(char* s1, char* s2)
1641 Found in file handy.h
1645 Test two strings to see if they are equal. The C<len> parameter indicates
1646 the number of bytes to compare. Returns true or false. (A wrapper for
1649 bool strnEQ(char* s1, char* s2, STRLEN len)
1652 Found in file handy.h
1656 Test two strings to see if they are different. The C<len> parameter
1657 indicates the number of bytes to compare. Returns true or false. (A
1658 wrapper for C<strncmp>).
1660 bool strnNE(char* s1, char* s2, STRLEN len)
1663 Found in file handy.h
1668 =head1 Numeric functions
1674 converts a string representing a binary number to numeric form.
1676 On entry I<start> and I<*len> give the string to scan, I<*flags> gives
1677 conversion flags, and I<result> should be NULL or a pointer to an NV.
1678 The scan stops at the end of the string, or the first invalid character.
1679 On return I<*len> is set to the length scanned string, and I<*flags> gives
1682 If the value is <= UV_MAX it is returned as a UV, the output flags are clear,
1683 and nothing is written to I<*result>. If the value is > UV_MAX C<grok_bin>
1684 returns UV_MAX, sets C<PERL_SCAN_GREATER_THAN_UV_MAX> in the output flags,
1685 and writes the value to I<*result> (or the value is discarded if I<result>
1688 The hex number may optionally be prefixed with "0b" or "b" unless
1689 C<PERL_SCAN_DISALLOW_PREFIX> is set in I<*flags> on entry. If
1690 C<PERL_SCAN_ALLOW_UNDERSCORES> is set in I<*flags> then the binary
1691 number may use '_' characters to separate digits.
1693 UV grok_bin(char* start, STRLEN* len, I32* flags, NV *result)
1696 Found in file numeric.c
1700 converts a string representing a hex number to numeric form.
1702 On entry I<start> and I<*len> give the string to scan, I<*flags> gives
1703 conversion flags, and I<result> should be NULL or a pointer to an NV.
1704 The scan stops at the end of the string, or the first non-hex-digit character.
1705 On return I<*len> is set to the length scanned string, and I<*flags> gives
1708 If the value is <= UV_MAX it is returned as a UV, the output flags are clear,
1709 and nothing is written to I<*result>. If the value is > UV_MAX C<grok_hex>
1710 returns UV_MAX, sets C<PERL_SCAN_GREATER_THAN_UV_MAX> in the output flags,
1711 and writes the value to I<*result> (or the value is discarded if I<result>
1714 The hex number may optionally be prefixed with "0x" or "x" unless
1715 C<PERL_SCAN_DISALLOW_PREFIX> is set in I<*flags> on entry. If
1716 C<PERL_SCAN_ALLOW_UNDERSCORES> is set in I<*flags> then the hex
1717 number may use '_' characters to separate digits.
1719 UV grok_hex(char* start, STRLEN* len, I32* flags, NV *result)
1722 Found in file numeric.c
1726 Recognise (or not) a number. The type of the number is returned
1727 (0 if unrecognised), otherwise it is a bit-ORed combination of
1728 IS_NUMBER_IN_UV, IS_NUMBER_GREATER_THAN_UV_MAX, IS_NUMBER_NOT_INT,
1729 IS_NUMBER_NEG, IS_NUMBER_INFINITY, IS_NUMBER_NAN (defined in perl.h).
1731 If the value of the number can fit an in UV, it is returned in the *valuep
1732 IS_NUMBER_IN_UV will be set to indicate that *valuep is valid, IS_NUMBER_IN_UV
1733 will never be set unless *valuep is valid, but *valuep may have been assigned
1734 to during processing even though IS_NUMBER_IN_UV is not set on return.
1735 If valuep is NULL, IS_NUMBER_IN_UV will be set for the same cases as when
1736 valuep is non-NULL, but no actual assignment (or SEGV) will occur.
1738 IS_NUMBER_NOT_INT will be set with IS_NUMBER_IN_UV if trailing decimals were
1739 seen (in which case *valuep gives the true value truncated to an integer), and
1740 IS_NUMBER_NEG if the number is negative (in which case *valuep holds the
1741 absolute value). IS_NUMBER_IN_UV is not set if e notation was used or the
1742 number is larger than a UV.
1744 int grok_number(const char *pv, STRLEN len, UV *valuep)
1747 Found in file numeric.c
1749 =item grok_numeric_radix
1751 Scan and skip for a numeric decimal separator (radix).
1753 bool grok_numeric_radix(const char **sp, const char *send)
1756 Found in file numeric.c
1761 UV grok_oct(char* start, STRLEN* len, I32* flags, NV *result)
1764 Found in file numeric.c
1768 For backwards compatibility. Use C<grok_bin> instead.
1770 NV scan_bin(char* start, STRLEN len, STRLEN* retlen)
1773 Found in file numeric.c
1777 For backwards compatibility. Use C<grok_hex> instead.
1779 NV scan_hex(char* start, STRLEN len, STRLEN* retlen)
1782 Found in file numeric.c
1786 For backwards compatibility. Use C<grok_oct> instead.
1788 NV scan_oct(char* start, STRLEN len, STRLEN* retlen)
1791 Found in file numeric.c
1796 =head1 Optree Manipulation Functions
1802 If C<cv> is a constant sub eligible for inlining. returns the constant
1803 value returned by the sub. Otherwise, returns NULL.
1805 Constant subs can be created with C<newCONSTSUB> or as described in
1806 L<perlsub/"Constant Functions">.
1808 SV* cv_const_sv(CV* cv)
1815 Creates a constant sub equivalent to Perl C<sub FOO () { 123 }> which is
1816 eligible for inlining at compile-time.
1818 CV* newCONSTSUB(HV* stash, char* name, SV* sv)
1825 Used by C<xsubpp> to hook up XSUBs as Perl subs.
1833 =head1 Stack Manipulation Macros
1839 Declare a stack marker variable, C<mark>, for the XSUB. See C<MARK> and
1849 Saves the original stack mark for the XSUB. See C<ORIGMARK>.
1858 Declares a local copy of perl's stack pointer for the XSUB, available via
1859 the C<SP> macro. See C<SP>.
1868 Used to extend the argument stack for an XSUB's return values. Once
1869 used, guarantees that there is room for at least C<nitems> to be pushed
1872 void EXTEND(SP, int nitems)
1879 Stack marker variable for the XSUB. See C<dMARK>.
1886 The original stack mark for the XSUB. See C<dORIGMARK>.
1893 Pops an integer off the stack.
1902 Pops a long off the stack.
1911 Pops a double off the stack.
1920 Pops a string off the stack. Deprecated. New code should provide
1921 a STRLEN n_a and use POPpx.
1930 Pops a string off the stack which must consist of bytes i.e. characters < 256.
1931 Requires a variable STRLEN n_a in scope.
1940 Pops a string off the stack.
1941 Requires a variable STRLEN n_a in scope.
1950 Pops an SV off the stack.
1959 Push an integer onto the stack. The stack must have room for this element.
1960 Handles 'set' magic. See C<XPUSHi>.
1969 Opening bracket for arguments on a callback. See C<PUTBACK> and
1979 Push a double onto the stack. The stack must have room for this element.
1980 Handles 'set' magic. See C<XPUSHn>.
1989 Push a string onto the stack. The stack must have room for this element.
1990 The C<len> indicates the length of the string. Handles 'set' magic. See
1993 void PUSHp(char* str, STRLEN len)
2000 Push an SV onto the stack. The stack must have room for this element.
2001 Does not handle 'set' magic. See C<XPUSHs>.
2010 Push an unsigned integer onto the stack. The stack must have room for this
2011 element. See C<XPUSHu>.
2020 Closing bracket for XSUB arguments. This is usually handled by C<xsubpp>.
2021 See C<PUSHMARK> and L<perlcall> for other uses.
2030 Stack pointer. This is usually handled by C<xsubpp>. See C<dSP> and
2038 Refetch the stack pointer. Used after a callback. See L<perlcall>.
2047 Push an integer onto the stack, extending the stack if necessary. Handles
2048 'set' magic. See C<PUSHi>.
2057 Push a double onto the stack, extending the stack if necessary. Handles
2058 'set' magic. See C<PUSHn>.
2067 Push a string onto the stack, extending the stack if necessary. The C<len>
2068 indicates the length of the string. Handles 'set' magic. See
2071 void XPUSHp(char* str, STRLEN len)
2078 Push an SV onto the stack, extending the stack if necessary. Does not
2079 handle 'set' magic. See C<PUSHs>.
2088 Push an unsigned integer onto the stack, extending the stack if necessary.
2098 Return from XSUB, indicating number of items on the stack. This is usually
2099 handled by C<xsubpp>.
2101 void XSRETURN(int nitems)
2104 Found in file XSUB.h
2108 Return an integer from an XSUB immediately. Uses C<XST_mIV>.
2110 void XSRETURN_IV(IV iv)
2113 Found in file XSUB.h
2117 Return C<&PL_sv_no> from an XSUB immediately. Uses C<XST_mNO>.
2122 Found in file XSUB.h
2126 Return a double from an XSUB immediately. Uses C<XST_mNV>.
2128 void XSRETURN_NV(NV nv)
2131 Found in file XSUB.h
2135 Return a copy of a string from an XSUB immediately. Uses C<XST_mPV>.
2137 void XSRETURN_PV(char* str)
2140 Found in file XSUB.h
2142 =item XSRETURN_UNDEF
2144 Return C<&PL_sv_undef> from an XSUB immediately. Uses C<XST_mUNDEF>.
2149 Found in file XSUB.h
2153 Return C<&PL_sv_yes> from an XSUB immediately. Uses C<XST_mYES>.
2158 Found in file XSUB.h
2162 Place an integer into the specified position C<pos> on the stack. The
2163 value is stored in a new mortal SV.
2165 void XST_mIV(int pos, IV iv)
2168 Found in file XSUB.h
2172 Place C<&PL_sv_no> into the specified position C<pos> on the
2175 void XST_mNO(int pos)
2178 Found in file XSUB.h
2182 Place a double into the specified position C<pos> on the stack. The value
2183 is stored in a new mortal SV.
2185 void XST_mNV(int pos, NV nv)
2188 Found in file XSUB.h
2192 Place a copy of a string into the specified position C<pos> on the stack.
2193 The value is stored in a new mortal SV.
2195 void XST_mPV(int pos, char* str)
2198 Found in file XSUB.h
2202 Place C<&PL_sv_undef> into the specified position C<pos> on the
2205 void XST_mUNDEF(int pos)
2208 Found in file XSUB.h
2212 Place C<&PL_sv_yes> into the specified position C<pos> on the
2215 void XST_mYES(int pos)
2218 Found in file XSUB.h
2229 An enum of flags for Perl types. These are found in the file B<sv.h>
2230 in the C<svtype> enum. Test these flags with the C<SvTYPE> macro.
2237 Integer type flag for scalars. See C<svtype>.
2244 Double type flag for scalars. See C<svtype>.
2251 Pointer type flag for scalars. See C<svtype>.
2258 Type flag for arrays. See C<svtype>.
2265 Type flag for code refs. See C<svtype>.
2272 Type flag for hashes. See C<svtype>.
2279 Type flag for blessed scalars. See C<svtype>.
2287 =head1 SV Manipulation Functions
2293 Returns the SV of the specified Perl scalar. If C<create> is set and the
2294 Perl variable does not exist then it will be created. If C<create> is not
2295 set and the variable does not exist then NULL is returned.
2297 NOTE: the perl_ form of this function is deprecated.
2299 SV* get_sv(const char* name, I32 create)
2302 Found in file perl.c
2304 =item looks_like_number
2306 Test if the content of an SV looks like a number (or is a number).
2307 C<Inf> and C<Infinity> are treated as numbers (so will not issue a
2308 non-numeric warning), even if your atof() doesn't grok them.
2310 I32 looks_like_number(SV* sv)
2315 =item memcmp_byte_utf8
2317 Similar to memcmp(), but the first string is with bytes, the second
2318 with utf8. Takes into account that the lengths may be different.
2320 int memcmp_byte_utf8(char *sbyte, STRLEN lbyte, char *sutf, STRLEN lutf)
2323 Found in file util.c
2327 Creates an RV wrapper for an SV. The reference count for the original SV is
2330 SV* newRV_inc(SV* sv)
2337 Creates an RV wrapper for an SV. The reference count for the original
2338 SV is B<not> incremented.
2340 SV* newRV_noinc(SV *sv)
2347 Create a new null SV, or if len > 0, create a new empty SVt_PV type SV
2348 with an initial PV allocation of len+1. Normally accessed via the C<NEWSV>
2351 SV* newSV(STRLEN len)
2358 Creates a new SV and copies an integer into it. The reference count for the
2368 Creates a new SV and copies a floating point value into it.
2369 The reference count for the SV is set to 1.
2378 Creates a new SV and copies a string into it. The reference count for the
2379 SV is set to 1. If C<len> is zero, Perl will compute the length using
2380 strlen(). For efficiency, consider using C<newSVpvn> instead.
2382 SV* newSVpv(const char* s, STRLEN len)
2389 Creates a new SV and initializes it with the string formatted like
2392 SV* newSVpvf(const char* pat, ...)
2399 Creates a new SV and copies a string into it. The reference count for the
2400 SV is set to 1. Note that if C<len> is zero, Perl will create a zero length
2401 string. You are responsible for ensuring that the source string is at least
2404 SV* newSVpvn(const char* s, STRLEN len)
2409 =item newSVpvn_share
2411 Creates a new SV with its SvPVX pointing to a shared string in the string
2412 table. If the string does not already exist in the table, it is created
2413 first. Turns on READONLY and FAKE. The string's hash is stored in the UV
2414 slot of the SV; if the C<hash> parameter is non-zero, that value is used;
2415 otherwise the hash is computed. The idea here is that as the string table
2416 is used for shared hash keys these strings will have SvPVX == HeKEY and
2417 hash lookup will avoid string compare.
2419 SV* newSVpvn_share(const char* s, I32 len, U32 hash)
2426 Creates a new SV for the RV, C<rv>, to point to. If C<rv> is not an RV then
2427 it will be upgraded to one. If C<classname> is non-null then the new SV will
2428 be blessed in the specified package. The new SV is returned and its
2429 reference count is 1.
2431 SV* newSVrv(SV* rv, const char* classname)
2438 Creates a new SV which is an exact duplicate of the original SV.
2441 SV* newSVsv(SV* old)
2448 Creates a new SV and copies an unsigned integer into it.
2449 The reference count for the SV is set to 1.
2458 Returns a pointer to the next character after the parsed
2459 vstring, as well as updating the passed in sv.
2461 Function must be called like
2464 s = new_vstring(s,sv);
2466 The sv must already be large enough to store the vstring
2469 char* new_vstring(char *vstr, SV *sv)
2472 Found in file util.c
2476 Returns the length of the string which is in the SV. See C<SvLEN>.
2478 STRLEN SvCUR(SV* sv)
2485 Set the length of the string which is in the SV. See C<SvCUR>.
2487 void SvCUR_set(SV* sv, STRLEN len)
2494 Returns a pointer to the last character in the string which is in the SV.
2495 See C<SvCUR>. Access the character as *(SvEND(sv)).
2504 Expands the character buffer in the SV so that it has room for the
2505 indicated number of bytes (remember to reserve space for an extra trailing
2506 NUL character). Calls C<sv_grow> to perform the expansion if necessary.
2507 Returns a pointer to the character buffer.
2509 char * SvGROW(SV* sv, STRLEN len)
2516 Returns a boolean indicating whether the SV contains an integer.
2525 Returns a boolean indicating whether the SV contains an integer. Checks
2526 the B<private> setting. Use C<SvIOK>.
2535 Returns a boolean indicating whether the SV contains a signed integer.
2537 void SvIOK_notUV(SV* sv)
2544 Unsets the IV status of an SV.
2546 void SvIOK_off(SV* sv)
2553 Tells an SV that it is an integer.
2555 void SvIOK_on(SV* sv)
2562 Tells an SV that it is an integer and disables all other OK bits.
2564 void SvIOK_only(SV* sv)
2571 Tells and SV that it is an unsigned integer and disables all other OK bits.
2573 void SvIOK_only_UV(SV* sv)
2580 Returns a boolean indicating whether the SV contains an unsigned integer.
2582 void SvIOK_UV(SV* sv)
2589 Coerces the given SV to an integer and returns it. See C<SvIVx> for a
2590 version which guarantees to evaluate sv only once.
2599 Coerces the given SV to an integer and returns it. Guarantees to evaluate
2600 sv only once. Use the more efficient C<SvIV> otherwise.
2609 Returns the raw value in the SV's IV slot, without checks or conversions.
2610 Only use when you are sure SvIOK is true. See also C<SvIV()>.
2619 Returns the size of the string buffer in the SV, not including any part
2620 attributable to C<SvOOK>. See C<SvCUR>.
2622 STRLEN SvLEN(SV* sv)
2629 Returns a boolean indicating whether the SV contains a number, integer or
2639 Returns a boolean indicating whether the SV contains a number, integer or
2640 double. Checks the B<private> setting. Use C<SvNIOK>.
2642 bool SvNIOKp(SV* sv)
2649 Unsets the NV/IV status of an SV.
2651 void SvNIOK_off(SV* sv)
2658 Returns a boolean indicating whether the SV contains a double.
2667 Returns a boolean indicating whether the SV contains a double. Checks the
2668 B<private> setting. Use C<SvNOK>.
2677 Unsets the NV status of an SV.
2679 void SvNOK_off(SV* sv)
2686 Tells an SV that it is a double.
2688 void SvNOK_on(SV* sv)
2695 Tells an SV that it is a double and disables all other OK bits.
2697 void SvNOK_only(SV* sv)
2704 Coerce the given SV to a double and return it. See C<SvNVx> for a version
2705 which guarantees to evaluate sv only once.
2714 Coerces the given SV to a double and returns it. Guarantees to evaluate
2715 sv only once. Use the more efficient C<SvNV> otherwise.
2724 Returns the raw value in the SV's NV slot, without checks or conversions.
2725 Only use when you are sure SvNOK is true. See also C<SvNV()>.
2734 Returns a boolean indicating whether the value is an SV.
2743 Returns a boolean indicating whether the SvIVX is a valid offset value for
2744 the SvPVX. This hack is used internally to speed up removal of characters
2745 from the beginning of a SvPV. When SvOOK is true, then the start of the
2746 allocated string buffer is really (SvPVX - SvIVX).
2755 Returns a boolean indicating whether the SV contains a character
2765 Returns a boolean indicating whether the SV contains a character string.
2766 Checks the B<private> setting. Use C<SvPOK>.
2775 Unsets the PV status of an SV.
2777 void SvPOK_off(SV* sv)
2784 Tells an SV that it is a string.
2786 void SvPOK_on(SV* sv)
2793 Tells an SV that it is a string and disables all other OK bits.
2794 Will also turn off the UTF8 status.
2796 void SvPOK_only(SV* sv)
2801 =item SvPOK_only_UTF8
2803 Tells an SV that it is a string and disables all other OK bits,
2804 and leaves the UTF8 status as it was.
2806 void SvPOK_only_UTF8(SV* sv)
2813 Returns a pointer to the string in the SV, or a stringified form of
2814 the SV if the SV does not contain a string. The SV may cache the
2815 stringified version becoming C<SvPOK>. Handles 'get' magic. See also
2816 C<SvPVx> for a version which guarantees to evaluate sv only once.
2818 char* SvPV(SV* sv, STRLEN len)
2825 Like C<SvPV>, but converts sv to byte representation first if necessary.
2827 char* SvPVbyte(SV* sv, STRLEN len)
2834 Like C<SvPV>, but converts sv to byte representation first if necessary.
2835 Guarantees to evaluate sv only once; use the more efficient C<SvPVbyte>
2839 char* SvPVbytex(SV* sv, STRLEN len)
2844 =item SvPVbytex_force
2846 Like C<SvPV_force>, but converts sv to byte representation first if necessary.
2847 Guarantees to evaluate sv only once; use the more efficient C<SvPVbyte_force>
2850 char* SvPVbytex_force(SV* sv, STRLEN len)
2855 =item SvPVbyte_force
2857 Like C<SvPV_force>, but converts sv to byte representation first if necessary.
2859 char* SvPVbyte_force(SV* sv, STRLEN len)
2864 =item SvPVbyte_nolen
2866 Like C<SvPV_nolen>, but converts sv to byte representation first if necessary.
2868 char* SvPVbyte_nolen(SV* sv)
2875 Like C<SvPV>, but converts sv to utf8 first if necessary.
2877 char* SvPVutf8(SV* sv, STRLEN len)
2884 Like C<SvPV>, but converts sv to utf8 first if necessary.
2885 Guarantees to evaluate sv only once; use the more efficient C<SvPVutf8>
2888 char* SvPVutf8x(SV* sv, STRLEN len)
2893 =item SvPVutf8x_force
2895 Like C<SvPV_force>, but converts sv to utf8 first if necessary.
2896 Guarantees to evaluate sv only once; use the more efficient C<SvPVutf8_force>
2899 char* SvPVutf8x_force(SV* sv, STRLEN len)
2904 =item SvPVutf8_force
2906 Like C<SvPV_force>, but converts sv to utf8 first if necessary.
2908 char* SvPVutf8_force(SV* sv, STRLEN len)
2913 =item SvPVutf8_nolen
2915 Like C<SvPV_nolen>, but converts sv to utf8 first if necessary.
2917 char* SvPVutf8_nolen(SV* sv)
2924 A version of C<SvPV> which guarantees to evaluate sv only once.
2926 char* SvPVx(SV* sv, STRLEN len)
2933 Returns a pointer to the physical string in the SV. The SV must contain a
2943 Like C<SvPV> but will force the SV into containing just a string
2944 (C<SvPOK_only>). You want force if you are going to update the C<SvPVX>
2947 char* SvPV_force(SV* sv, STRLEN len)
2952 =item SvPV_force_nomg
2954 Like C<SvPV> but will force the SV into containing just a string
2955 (C<SvPOK_only>). You want force if you are going to update the C<SvPVX>
2956 directly. Doesn't process magic.
2958 char* SvPV_force_nomg(SV* sv, STRLEN len)
2965 Returns a pointer to the string in the SV, or a stringified form of
2966 the SV if the SV does not contain a string. The SV may cache the
2967 stringified form becoming C<SvPOK>. Handles 'get' magic.
2969 char* SvPV_nolen(SV* sv)
2976 Returns the value of the object's reference count.
2978 U32 SvREFCNT(SV* sv)
2985 Decrements the reference count of the given SV.
2987 void SvREFCNT_dec(SV* sv)
2994 Increments the reference count of the given SV.
2996 SV* SvREFCNT_inc(SV* sv)
3003 Tests if the SV is an RV.
3012 Unsets the RV status of an SV.
3014 void SvROK_off(SV* sv)
3021 Tells an SV that it is an RV.
3023 void SvROK_on(SV* sv)
3030 Dereferences an RV to return the SV.
3039 Returns the stash of the SV.
3048 Taints an SV if tainting is enabled
3050 void SvTAINT(SV* sv)
3057 Checks to see if an SV is tainted. Returns TRUE if it is, FALSE if
3060 bool SvTAINTED(SV* sv)
3067 Untaints an SV. Be I<very> careful with this routine, as it short-circuits
3068 some of Perl's fundamental security features. XS module authors should not
3069 use this function unless they fully understand all the implications of
3070 unconditionally untainting the value. Untainting should be done in the
3071 standard perl fashion, via a carefully crafted regexp, rather than directly
3072 untainting variables.
3074 void SvTAINTED_off(SV* sv)
3081 Marks an SV as tainted.
3083 void SvTAINTED_on(SV* sv)
3090 Returns a boolean indicating whether Perl would evaluate the SV as true or
3091 false, defined or undefined. Does not handle 'get' magic.
3100 Returns the type of the SV. See C<svtype>.
3102 svtype SvTYPE(SV* sv)
3109 Releases a mutual exclusion lock on sv if a suitable module
3113 void SvUNLOCK(SV* sv)
3120 Returns a boolean indicating whether the SV contains an unsigned integer.
3129 Used to upgrade an SV to a more complex form. Uses C<sv_upgrade> to
3130 perform the upgrade if necessary. See C<svtype>.
3132 void SvUPGRADE(SV* sv, svtype type)
3139 Returns a boolean indicating whether the SV contains UTF-8 encoded data.
3148 Unsets the UTF8 status of an SV.
3150 void SvUTF8_off(SV *sv)
3157 Turn on the UTF8 status of an SV (the data is not changed, just the flag).
3158 Do not use frivolously.
3160 void SvUTF8_on(SV *sv)
3167 Coerces the given SV to an unsigned integer and returns it. See C<SvUVx>
3168 for a version which guarantees to evaluate sv only once.
3177 Coerces the given SV to an unsigned integer and returns it. Guarantees to
3178 evaluate sv only once. Use the more efficient C<SvUV> otherwise.
3187 Returns the raw value in the SV's UV slot, without checks or conversions.
3188 Only use when you are sure SvIOK is true. See also C<SvUV()>.
3197 This function is only called on magical items, and is only used by
3198 sv_true() or its macro equivalent.
3200 bool sv_2bool(SV* sv)
3207 Using various gambits, try to get a CV from an SV; in addition, try if
3208 possible to set C<*st> and C<*gvp> to the stash and GV associated with it.
3210 CV* sv_2cv(SV* sv, HV** st, GV** gvp, I32 lref)
3217 Using various gambits, try to get an IO from an SV: the IO slot if its a
3218 GV; or the recursive result if we're an RV; or the IO slot of the symbol
3219 named after the PV if we're a string.
3228 Return the integer value of an SV, doing any necessary string conversion,
3229 magic etc. Normally used via the C<SvIV(sv)> and C<SvIVx(sv)> macros.
3238 Marks an existing SV as mortal. The SV will be destroyed "soon", either
3239 by an explicit call to FREETMPS, or by an implicit call at places such as
3240 statement boundaries. See also C<sv_newmortal> and C<sv_mortalcopy>.
3242 SV* sv_2mortal(SV* sv)
3249 Return the num value of an SV, doing any necessary string or integer
3250 conversion, magic etc. Normally used via the C<SvNV(sv)> and C<SvNVx(sv)>
3260 Return a pointer to the byte-encoded representation of the SV, and set *lp
3261 to its length. May cause the SV to be downgraded from UTF8 as a
3264 Usually accessed via the C<SvPVbyte> macro.
3266 char* sv_2pvbyte(SV* sv, STRLEN* lp)
3271 =item sv_2pvbyte_nolen
3273 Return a pointer to the byte-encoded representation of the SV.
3274 May cause the SV to be downgraded from UTF8 as a side-effect.
3276 Usually accessed via the C<SvPVbyte_nolen> macro.
3278 char* sv_2pvbyte_nolen(SV* sv)
3285 Return a pointer to the UTF8-encoded representation of the SV, and set *lp
3286 to its length. May cause the SV to be upgraded to UTF8 as a side-effect.
3288 Usually accessed via the C<SvPVutf8> macro.
3290 char* sv_2pvutf8(SV* sv, STRLEN* lp)
3295 =item sv_2pvutf8_nolen
3297 Return a pointer to the UTF8-encoded representation of the SV.
3298 May cause the SV to be upgraded to UTF8 as a side-effect.
3300 Usually accessed via the C<SvPVutf8_nolen> macro.
3302 char* sv_2pvutf8_nolen(SV* sv)
3309 Returns a pointer to the string value of an SV, and sets *lp to its length.
3310 If flags includes SV_GMAGIC, does an mg_get() first. Coerces sv to a string
3312 Normally invoked via the C<SvPV_flags> macro. C<sv_2pv()> and C<sv_2pv_nomg>
3313 usually end up here too.
3315 char* sv_2pv_flags(SV* sv, STRLEN* lp, I32 flags)
3322 Like C<sv_2pv()>, but doesn't return the length too. You should usually
3323 use the macro wrapper C<SvPV_nolen(sv)> instead.
3324 char* sv_2pv_nolen(SV* sv)
3331 Return the unsigned integer value of an SV, doing any necessary string
3332 conversion, magic etc. Normally used via the C<SvUV(sv)> and C<SvUVx(sv)>
3342 Remove any string offset. You should normally use the C<SvOOK_off> macro
3345 int sv_backoff(SV* sv)
3352 Blesses an SV into a specified package. The SV must be an RV. The package
3353 must be designated by its stash (see C<gv_stashpv()>). The reference count
3354 of the SV is unaffected.
3356 SV* sv_bless(SV* sv, HV* stash)
3363 Concatenates the string onto the end of the string which is in the SV.
3364 If the SV has the UTF8 status set, then the bytes appended should be
3365 valid UTF8. Handles 'get' magic, but not 'set' magic. See C<sv_catpv_mg>.
3367 void sv_catpv(SV* sv, const char* ptr)
3374 Processes its arguments like C<sprintf> and appends the formatted
3375 output to an SV. If the appended data contains "wide" characters
3376 (including, but not limited to, SVs with a UTF-8 PV formatted with %s,
3377 and characters >255 formatted with %c), the original SV might get
3378 upgraded to UTF-8. Handles 'get' magic, but not 'set' magic.
3379 C<SvSETMAGIC()> must typically be called after calling this function
3380 to handle 'set' magic.
3382 void sv_catpvf(SV* sv, const char* pat, ...)
3389 Like C<sv_catpvf>, but also handles 'set' magic.
3391 void sv_catpvf_mg(SV *sv, const char* pat, ...)
3398 Concatenates the string onto the end of the string which is in the SV. The
3399 C<len> indicates number of bytes to copy. If the SV has the UTF8
3400 status set, then the bytes appended should be valid UTF8.
3401 Handles 'get' magic, but not 'set' magic. See C<sv_catpvn_mg>.
3403 void sv_catpvn(SV* sv, const char* ptr, STRLEN len)
3408 =item sv_catpvn_flags
3410 Concatenates the string onto the end of the string which is in the SV. The
3411 C<len> indicates number of bytes to copy. If the SV has the UTF8
3412 status set, then the bytes appended should be valid UTF8.
3413 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<dsv> if
3414 appropriate, else not. C<sv_catpvn> and C<sv_catpvn_nomg> are implemented
3415 in terms of this function.
3417 void sv_catpvn_flags(SV* sv, const char* ptr, STRLEN len, I32 flags)
3424 Like C<sv_catpvn>, but also handles 'set' magic.
3426 void sv_catpvn_mg(SV *sv, const char *ptr, STRLEN len)
3433 Like C<sv_catpv>, but also handles 'set' magic.
3435 void sv_catpv_mg(SV *sv, const char *ptr)
3442 Concatenates the string from SV C<ssv> onto the end of the string in
3443 SV C<dsv>. Modifies C<dsv> but not C<ssv>. Handles 'get' magic, but
3444 not 'set' magic. See C<sv_catsv_mg>.
3446 void sv_catsv(SV* dsv, SV* ssv)
3451 =item sv_catsv_flags
3453 Concatenates the string from SV C<ssv> onto the end of the string in
3454 SV C<dsv>. Modifies C<dsv> but not C<ssv>. If C<flags> has C<SV_GMAGIC>
3455 bit set, will C<mg_get> on the SVs if appropriate, else not. C<sv_catsv>
3456 and C<sv_catsv_nomg> are implemented in terms of this function.
3458 void sv_catsv_flags(SV* dsv, SV* ssv, I32 flags)
3465 Like C<sv_catsv>, but also handles 'set' magic.
3467 void sv_catsv_mg(SV *dstr, SV *sstr)
3474 Efficient removal of characters from the beginning of the string buffer.
3475 SvPOK(sv) must be true and the C<ptr> must be a pointer to somewhere inside
3476 the string buffer. The C<ptr> becomes the first character of the adjusted
3477 string. Uses the "OOK hack".
3479 void sv_chop(SV* sv, char* ptr)
3486 Clear an SV: call any destructors, free up any memory used by the body,
3487 and free the body itself. The SV's head is I<not> freed, although
3488 its type is set to all 1's so that it won't inadvertently be assumed
3489 to be live during global destruction etc.
3490 This function should only be called when REFCNT is zero. Most of the time
3491 you'll want to call C<sv_free()> (or its macro wrapper C<SvREFCNT_dec>)
3494 void sv_clear(SV* sv)
3501 Compares the strings in two SVs. Returns -1, 0, or 1 indicating whether the
3502 string in C<sv1> is less than, equal to, or greater than the string in
3503 C<sv2>. Is UTF-8 and 'use bytes' aware, handles get magic, and will
3504 coerce its args to strings if necessary. See also C<sv_cmp_locale>.
3506 I32 sv_cmp(SV* sv1, SV* sv2)
3513 Compares the strings in two SVs in a locale-aware manner. Is UTF-8 and
3514 'use bytes' aware, handles get magic, and will coerce its args to strings
3515 if necessary. See also C<sv_cmp_locale>. See also C<sv_cmp>.
3517 I32 sv_cmp_locale(SV* sv1, SV* sv2)
3524 Add Collate Transform magic to an SV if it doesn't already have it.
3526 Any scalar variable may carry PERL_MAGIC_collxfrm magic that contains the
3527 scalar data of the variable, but transformed to such a format that a normal
3528 memory comparison can be used to compare the data according to the locale
3531 char* sv_collxfrm(SV* sv, STRLEN* nxp)
3538 Copies a stringified representation of the source SV into the
3539 destination SV. Automatically performs any necessary mg_get and
3540 coercion of numeric values into strings. Guaranteed to preserve
3541 UTF-8 flag even from overloaded objects. Similar in nature to
3542 sv_2pv[_flags] but operates directly on an SV instead of just the
3543 string. Mostly uses sv_2pv_flags to do its work, except when that
3544 would lose the UTF-8'ness of the PV.
3546 void sv_copypv(SV* dsv, SV* ssv)
3553 Auto-decrement of the value in the SV, doing string to numeric conversion
3554 if necessary. Handles 'get' magic.
3561 =item sv_derived_from
3563 Returns a boolean indicating whether the SV is derived from the specified
3564 class. This is the function that implements C<UNIVERSAL::isa>. It works
3565 for class names as well as for objects.
3567 bool sv_derived_from(SV* sv, const char* name)
3570 Found in file universal.c
3574 Returns a boolean indicating whether the strings in the two SVs are
3575 identical. Is UTF-8 and 'use bytes' aware, handles get magic, and will
3576 coerce its args to strings if necessary.
3578 I32 sv_eq(SV* sv1, SV* sv2)
3583 =item sv_force_normal
3585 Undo various types of fakery on an SV: if the PV is a shared string, make
3586 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
3587 an xpvmg. See also C<sv_force_normal_flags>.
3589 void sv_force_normal(SV *sv)
3594 =item sv_force_normal_flags
3596 Undo various types of fakery on an SV: if the PV is a shared string, make
3597 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
3598 an xpvmg. The C<flags> parameter gets passed to C<sv_unref_flags()>
3599 when unrefing. C<sv_force_normal> calls this function with flags set to 0.
3601 void sv_force_normal_flags(SV *sv, U32 flags)
3608 Decrement an SV's reference count, and if it drops to zero, call
3609 C<sv_clear> to invoke destructors and free up any memory used by
3610 the body; finally, deallocate the SV's head itself.
3611 Normally called via a wrapper macro C<SvREFCNT_dec>.
3613 void sv_free(SV* sv)
3620 Get a line from the filehandle and store it into the SV, optionally
3621 appending to the currently-stored string.
3623 char* sv_gets(SV* sv, PerlIO* fp, I32 append)
3630 Expands the character buffer in the SV. If necessary, uses C<sv_unref> and
3631 upgrades the SV to C<SVt_PV>. Returns a pointer to the character buffer.
3632 Use the C<SvGROW> wrapper instead.
3634 char* sv_grow(SV* sv, STRLEN newlen)
3641 Auto-increment of the value in the SV, doing string to numeric conversion
3642 if necessary. Handles 'get' magic.
3651 Inserts a string at the specified offset/length within the SV. Similar to
3652 the Perl substr() function.
3654 void sv_insert(SV* bigsv, STRLEN offset, STRLEN len, char* little, STRLEN littlelen)
3661 Returns a boolean indicating whether the SV is blessed into the specified
3662 class. This does not check for subtypes; use C<sv_derived_from> to verify
3663 an inheritance relationship.
3665 int sv_isa(SV* sv, const char* name)
3672 Returns a boolean indicating whether the SV is an RV pointing to a blessed
3673 object. If the SV is not an RV, or if the object is not blessed, then this
3676 int sv_isobject(SV* sv)
3683 A private implementation of the C<SvIVx> macro for compilers which can't
3684 cope with complex macro expressions. Always use the macro instead.
3693 Returns the length of the string in the SV. Handles magic and type
3694 coercion. See also C<SvCUR>, which gives raw access to the xpv_cur slot.
3696 STRLEN sv_len(SV* sv)
3703 Returns the number of characters in the string in an SV, counting wide
3704 UTF8 bytes as a single character. Handles magic and type coercion.
3706 STRLEN sv_len_utf8(SV* sv)
3713 Adds magic to an SV. First upgrades C<sv> to type C<SVt_PVMG> if necessary,
3714 then adds a new magic item of type C<how> to the head of the magic list.
3716 void sv_magic(SV* sv, SV* obj, int how, const char* name, I32 namlen)
3723 Adds magic to an SV, upgrading it if necessary. Applies the
3724 supplied vtable and returns pointer to the magic added.
3726 Note that sv_magicext will allow things that sv_magic will not.
3727 In particular you can add magic to SvREADONLY SVs and and more than
3728 one instance of the same 'how'
3730 I C<namelen> is greater then zero then a savepvn() I<copy> of C<name> is stored,
3731 if C<namelen> is zero then C<name> is stored as-is and - as another special
3732 case - if C<(name && namelen == HEf_SVKEY)> then C<name> is assumed to contain
3733 an C<SV*> and has its REFCNT incremented
3735 (This is now used as a subroutine by sv_magic.)
3737 MAGIC * sv_magicext(SV* sv, SV* obj, int how, MGVTBL *vtbl, const char* name, I32 namlen )
3744 Creates a new SV which is a copy of the original SV (using C<sv_setsv>).
3745 The new SV is marked as mortal. It will be destroyed "soon", either by an
3746 explicit call to FREETMPS, or by an implicit call at places such as
3747 statement boundaries. See also C<sv_newmortal> and C<sv_2mortal>.
3749 SV* sv_mortalcopy(SV* oldsv)
3756 Creates a new null SV which is mortal. The reference count of the SV is
3757 set to 1. It will be destroyed "soon", either by an explicit call to
3758 FREETMPS, or by an implicit call at places such as statement boundaries.
3759 See also C<sv_mortalcopy> and C<sv_2mortal>.
3768 Increment an SV's reference count. Use the C<SvREFCNT_inc()> wrapper
3771 SV* sv_newref(SV* sv)
3778 Dummy routine which "locks" an SV when there is no locking module present.
3779 Exists to avoid test for a NULL function pointer and because it could potentially warn under
3780 some level of strict-ness.
3782 void sv_nolocking(SV *)
3785 Found in file util.c
3789 Dummy routine which "shares" an SV when there is no sharing module present.
3790 Exists to avoid test for a NULL function pointer and because it could potentially warn under
3791 some level of strict-ness.
3793 void sv_nosharing(SV *)
3796 Found in file util.c
3798 =item sv_nounlocking
3800 Dummy routine which "unlocks" an SV when there is no locking module present.
3801 Exists to avoid test for a NULL function pointer and because it could potentially warn under
3802 some level of strict-ness.
3804 void sv_nounlocking(SV *)
3807 Found in file util.c
3811 A private implementation of the C<SvNVx> macro for compilers which can't
3812 cope with complex macro expressions. Always use the macro instead.
3821 Converts the value pointed to by offsetp from a count of bytes from the
3822 start of the string, to a count of the equivalent number of UTF8 chars.
3823 Handles magic and type coercion.
3825 void sv_pos_b2u(SV* sv, I32* offsetp)
3832 Converts the value pointed to by offsetp from a count of UTF8 chars from
3833 the start of the string, to a count of the equivalent number of bytes; if
3834 lenp is non-zero, it does the same to lenp, but this time starting from
3835 the offset, rather than from the start of the string. Handles magic and
3838 void sv_pos_u2b(SV* sv, I32* offsetp, I32* lenp)
3845 A private implementation of the C<SvPV_nolen> macro for compilers which can't
3846 cope with complex macro expressions. Always use the macro instead.
3855 A private implementation of the C<SvPVbyte_nolen> macro for compilers
3856 which can't cope with complex macro expressions. Always use the macro
3859 char* sv_pvbyte(SV *sv)
3866 A private implementation of the C<SvPVbyte> macro for compilers
3867 which can't cope with complex macro expressions. Always use the macro
3870 char* sv_pvbyten(SV *sv, STRLEN *len)
3875 =item sv_pvbyten_force
3877 A private implementation of the C<SvPVbytex_force> macro for compilers
3878 which can't cope with complex macro expressions. Always use the macro
3881 char* sv_pvbyten_force(SV* sv, STRLEN* lp)
3888 A private implementation of the C<SvPV> macro for compilers which can't
3889 cope with complex macro expressions. Always use the macro instead.
3891 char* sv_pvn(SV *sv, STRLEN *len)
3898 Get a sensible string out of the SV somehow.
3899 A private implementation of the C<SvPV_force> macro for compilers which
3900 can't cope with complex macro expressions. Always use the macro instead.
3902 char* sv_pvn_force(SV* sv, STRLEN* lp)
3907 =item sv_pvn_force_flags
3909 Get a sensible string out of the SV somehow.
3910 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<sv> if
3911 appropriate, else not. C<sv_pvn_force> and C<sv_pvn_force_nomg> are
3912 implemented in terms of this function.
3913 You normally want to use the various wrapper macros instead: see
3914 C<SvPV_force> and C<SvPV_force_nomg>
3916 char* sv_pvn_force_flags(SV* sv, STRLEN* lp, I32 flags)
3923 A private implementation of the C<SvPVutf8_nolen> macro for compilers
3924 which can't cope with complex macro expressions. Always use the macro
3927 char* sv_pvutf8(SV *sv)
3934 A private implementation of the C<SvPVutf8> macro for compilers
3935 which can't cope with complex macro expressions. Always use the macro
3938 char* sv_pvutf8n(SV *sv, STRLEN *len)
3943 =item sv_pvutf8n_force
3945 A private implementation of the C<SvPVutf8_force> macro for compilers
3946 which can't cope with complex macro expressions. Always use the macro
3949 char* sv_pvutf8n_force(SV* sv, STRLEN* lp)
3956 Returns a string describing what the SV is a reference to.
3958 char* sv_reftype(SV* sv, int ob)
3965 Make the first argument a copy of the second, then delete the original.
3966 The target SV physically takes over ownership of the body of the source SV
3967 and inherits its flags; however, the target keeps any magic it owns,
3968 and any magic in the source is discarded.
3969 Note that this is a rather specialist SV copying operation; most of the
3970 time you'll want to use C<sv_setsv> or one of its many macro front-ends.
3972 void sv_replace(SV* sv, SV* nsv)
3977 =item sv_report_used
3979 Dump the contents of all SVs not yet freed. (Debugging aid).
3981 void sv_report_used()
3988 Underlying implementation for the C<reset> Perl function.
3989 Note that the perl-level function is vaguely deprecated.
3991 void sv_reset(char* s, HV* stash)
3998 Weaken a reference: set the C<SvWEAKREF> flag on this RV; give the
3999 referred-to SV C<PERL_MAGIC_backref> magic if it hasn't already; and
4000 push a back-reference to this RV onto the array of backreferences
4001 associated with that magic.
4003 SV* sv_rvweaken(SV *sv)
4010 Copies an integer into the given SV, upgrading first if necessary.
4011 Does not handle 'set' magic. See also C<sv_setiv_mg>.
4013 void sv_setiv(SV* sv, IV num)
4020 Like C<sv_setiv>, but also handles 'set' magic.
4022 void sv_setiv_mg(SV *sv, IV i)
4029 Copies a double into the given SV, upgrading first if necessary.
4030 Does not handle 'set' magic. See also C<sv_setnv_mg>.
4032 void sv_setnv(SV* sv, NV num)
4039 Like C<sv_setnv>, but also handles 'set' magic.
4041 void sv_setnv_mg(SV *sv, NV num)
4048 Copies a string into an SV. The string must be null-terminated. Does not
4049 handle 'set' magic. See C<sv_setpv_mg>.
4051 void sv_setpv(SV* sv, const char* ptr)
4058 Processes its arguments like C<sprintf> and sets an SV to the formatted
4059 output. Does not handle 'set' magic. See C<sv_setpvf_mg>.
4061 void sv_setpvf(SV* sv, const char* pat, ...)
4068 Like C<sv_setpvf>, but also handles 'set' magic.
4070 void sv_setpvf_mg(SV *sv, const char* pat, ...)
4077 Copies an integer into the given SV, also updating its string value.
4078 Does not handle 'set' magic. See C<sv_setpviv_mg>.
4080 void sv_setpviv(SV* sv, IV num)
4087 Like C<sv_setpviv>, but also handles 'set' magic.
4089 void sv_setpviv_mg(SV *sv, IV iv)
4096 Copies a string into an SV. The C<len> parameter indicates the number of
4097 bytes to be copied. Does not handle 'set' magic. See C<sv_setpvn_mg>.
4099 void sv_setpvn(SV* sv, const char* ptr, STRLEN len)
4106 Like C<sv_setpvn>, but also handles 'set' magic.
4108 void sv_setpvn_mg(SV *sv, const char *ptr, STRLEN len)
4115 Like C<sv_setpv>, but also handles 'set' magic.
4117 void sv_setpv_mg(SV *sv, const char *ptr)
4124 Copies an integer into a new SV, optionally blessing the SV. The C<rv>
4125 argument will be upgraded to an RV. That RV will be modified to point to
4126 the new SV. The C<classname> argument indicates the package for the
4127 blessing. Set C<classname> to C<Nullch> to avoid the blessing. The new SV
4128 will be returned and will have a reference count of 1.
4130 SV* sv_setref_iv(SV* rv, const char* classname, IV iv)
4137 Copies a double into a new SV, optionally blessing the SV. The C<rv>
4138 argument will be upgraded to an RV. That RV will be modified to point to
4139 the new SV. The C<classname> argument indicates the package for the
4140 blessing. Set C<classname> to C<Nullch> to avoid the blessing. The new SV
4141 will be returned and will have a reference count of 1.
4143 SV* sv_setref_nv(SV* rv, const char* classname, NV nv)
4150 Copies a pointer into a new SV, optionally blessing the SV. The C<rv>
4151 argument will be upgraded to an RV. That RV will be modified to point to
4152 the new SV. If the C<pv> argument is NULL then C<PL_sv_undef> will be placed
4153 into the SV. The C<classname> argument indicates the package for the
4154 blessing. Set C<classname> to C<Nullch> to avoid the blessing. The new SV
4155 will be returned and will have a reference count of 1.
4157 Do not use with other Perl types such as HV, AV, SV, CV, because those
4158 objects will become corrupted by the pointer copy process.
4160 Note that C<sv_setref_pvn> copies the string while this copies the pointer.
4162 SV* sv_setref_pv(SV* rv, const char* classname, void* pv)
4169 Copies a string into a new SV, optionally blessing the SV. The length of the
4170 string must be specified with C<n>. The C<rv> argument will be upgraded to
4171 an RV. That RV will be modified to point to the new SV. The C<classname>
4172 argument indicates the package for the blessing. Set C<classname> to
4173 C<Nullch> to avoid the blessing. The new SV will be returned and will have
4174 a reference count of 1.
4176 Note that C<sv_setref_pv> copies the pointer while this copies the string.
4178 SV* sv_setref_pvn(SV* rv, const char* classname, char* pv, STRLEN n)
4185 Copies an unsigned integer into a new SV, optionally blessing the SV. The C<rv>
4186 argument will be upgraded to an RV. That RV will be modified to point to
4187 the new SV. The C<classname> argument indicates the package for the
4188 blessing. Set C<classname> to C<Nullch> to avoid the blessing. The new SV
4189 will be returned and will have a reference count of 1.
4191 SV* sv_setref_uv(SV* rv, const char* classname, UV uv)
4198 Copies the contents of the source SV C<ssv> into the destination SV
4199 C<dsv>. The source SV may be destroyed if it is mortal, so don't use this
4200 function if the source SV needs to be reused. Does not handle 'set' magic.
4201 Loosely speaking, it performs a copy-by-value, obliterating any previous
4202 content of the destination.
4204 You probably want to use one of the assortment of wrappers, such as
4205 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
4206 C<SvSetMagicSV_nosteal>.
4209 void sv_setsv(SV* dsv, SV* ssv)
4214 =item sv_setsv_flags
4216 Copies the contents of the source SV C<ssv> into the destination SV
4217 C<dsv>. The source SV may be destroyed if it is mortal, so don't use this
4218 function if the source SV needs to be reused. Does not handle 'set' magic.
4219 Loosely speaking, it performs a copy-by-value, obliterating any previous
4220 content of the destination.
4221 If the C<flags> parameter has the C<SV_GMAGIC> bit set, will C<mg_get> on
4222 C<ssv> if appropriate, else not. C<sv_setsv> and C<sv_setsv_nomg> are
4223 implemented in terms of this function.
4225 You probably want to use one of the assortment of wrappers, such as
4226 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
4227 C<SvSetMagicSV_nosteal>.
4229 This is the primary function for copying scalars, and most other
4230 copy-ish functions and macros use this underneath.
4232 void sv_setsv_flags(SV* dsv, SV* ssv, I32 flags)
4239 Like C<sv_setsv>, but also handles 'set' magic.
4241 void sv_setsv_mg(SV *dstr, SV *sstr)
4248 Copies an unsigned integer into the given SV, upgrading first if necessary.
4249 Does not handle 'set' magic. See also C<sv_setuv_mg>.
4251 void sv_setuv(SV* sv, UV num)
4258 Like C<sv_setuv>, but also handles 'set' magic.
4260 void sv_setuv_mg(SV *sv, UV u)
4267 Taint an SV. Use C<SvTAINTED_on> instead.
4268 void sv_taint(SV* sv)
4275 Test an SV for taintedness. Use C<SvTAINTED> instead.
4276 bool sv_tainted(SV* sv)
4283 Returns true if the SV has a true value by Perl's rules.
4284 Use the C<SvTRUE> macro instead, which may call C<sv_true()> or may
4285 instead use an in-line version.
4294 Removes all magic of type C<type> from an SV.
4296 int sv_unmagic(SV* sv, int type)
4303 Unsets the RV status of the SV, and decrements the reference count of
4304 whatever was being referenced by the RV. This can almost be thought of
4305 as a reversal of C<newSVrv>. This is C<sv_unref_flags> with the C<flag>
4306 being zero. See C<SvROK_off>.
4308 void sv_unref(SV* sv)
4313 =item sv_unref_flags
4315 Unsets the RV status of the SV, and decrements the reference count of
4316 whatever was being referenced by the RV. This can almost be thought of
4317 as a reversal of C<newSVrv>. The C<cflags> argument can contain
4318 C<SV_IMMEDIATE_UNREF> to force the reference count to be decremented
4319 (otherwise the decrementing is conditional on the reference count being
4320 different from one or the reference being a readonly SV).
4323 void sv_unref_flags(SV* sv, U32 flags)
4330 Untaint an SV. Use C<SvTAINTED_off> instead.
4331 void sv_untaint(SV* sv)
4338 Upgrade an SV to a more complex form. Generally adds a new body type to the
4339 SV, then copies across as much information as possible from the old body.
4340 You generally want to use the C<SvUPGRADE> macro wrapper. See also C<svtype>.
4342 bool sv_upgrade(SV* sv, U32 mt)
4349 Tells an SV to use C<ptr> to find its string value. Normally the string is
4350 stored inside the SV but sv_usepvn allows the SV to use an outside string.
4351 The C<ptr> should point to memory that was allocated by C<malloc>. The
4352 string length, C<len>, must be supplied. This function will realloc the
4353 memory pointed to by C<ptr>, so that pointer should not be freed or used by
4354 the programmer after giving it to sv_usepvn. Does not handle 'set' magic.
4355 See C<sv_usepvn_mg>.
4357 void sv_usepvn(SV* sv, char* ptr, STRLEN len)
4364 Like C<sv_usepvn>, but also handles 'set' magic.
4366 void sv_usepvn_mg(SV *sv, char *ptr, STRLEN len)
4371 =item sv_utf8_decode
4373 Convert the octets in the PV from UTF-8 to chars. Scan for validity and then
4374 turn off SvUTF8 if needed so that we see characters. Used as a building block
4375 for decode_utf8 in Encode.xs
4377 NOTE: this function is experimental and may change or be
4378 removed without notice.
4380 bool sv_utf8_decode(SV *sv)
4385 =item sv_utf8_downgrade
4387 Attempt to convert the PV of an SV from UTF8-encoded to byte encoding.
4388 This may not be possible if the PV contains non-byte encoding characters;
4389 if this is the case, either returns false or, if C<fail_ok> is not
4392 NOTE: this function is experimental and may change or be
4393 removed without notice.
4395 bool sv_utf8_downgrade(SV *sv, bool fail_ok)
4400 =item sv_utf8_encode
4402 Convert the PV of an SV to UTF8-encoded, but then turn off the C<SvUTF8>
4403 flag so that it looks like octets again. Used as a building block
4404 for encode_utf8 in Encode.xs
4406 void sv_utf8_encode(SV *sv)
4411 =item sv_utf8_upgrade
4413 Convert the PV of an SV to its UTF8-encoded form.
4414 Forces the SV to string form if it is not already.
4415 Always sets the SvUTF8 flag to avoid future validity checks even
4416 if all the bytes have hibit clear.
4418 STRLEN sv_utf8_upgrade(SV *sv)
4423 =item sv_utf8_upgrade_flags
4425 Convert the PV of an SV to its UTF8-encoded form.
4426 Forces the SV to string form if it is not already.
4427 Always sets the SvUTF8 flag to avoid future validity checks even
4428 if all the bytes have hibit clear. If C<flags> has C<SV_GMAGIC> bit set,
4429 will C<mg_get> on C<sv> if appropriate, else not. C<sv_utf8_upgrade> and
4430 C<sv_utf8_upgrade_nomg> are implemented in terms of this function.
4432 STRLEN sv_utf8_upgrade_flags(SV *sv, I32 flags)
4439 A private implementation of the C<SvUVx> macro for compilers which can't
4440 cope with complex macro expressions. Always use the macro instead.
4449 Processes its arguments like C<vsprintf> and appends the formatted output
4450 to an SV. Uses an array of SVs if the C style variable argument list is
4451 missing (NULL). When running with taint checks enabled, indicates via
4452 C<maybe_tainted> if results are untrustworthy (often due to the use of
4455 Usually used via one of its frontends C<sv_catpvf> and C<sv_catpvf_mg>.
4457 void sv_vcatpvfn(SV* sv, const char* pat, STRLEN patlen, va_list* args, SV** svargs, I32 svmax, bool *maybe_tainted)
4464 Works like C<vcatpvfn> but copies the text into the SV instead of
4467 Usually used via one of its frontends C<sv_setpvf> and C<sv_setpvf_mg>.
4469 void sv_vsetpvfn(SV* sv, const char* pat, STRLEN patlen, va_list* args, SV** svargs, I32 svmax, bool *maybe_tainted)
4477 =head1 Unicode Support
4481 =item bytes_from_utf8
4483 Converts a string C<s> of length C<len> from UTF8 into byte encoding.
4484 Unlike <utf8_to_bytes> but like C<bytes_to_utf8>, returns a pointer to
4485 the newly-created string, and updates C<len> to contain the new
4486 length. Returns the original string if no conversion occurs, C<len>
4487 is unchanged. Do nothing if C<is_utf8> points to 0. Sets C<is_utf8> to
4488 0 if C<s> is converted or contains all 7bit characters.
4490 NOTE: this function is experimental and may change or be
4491 removed without notice.
4493 U8* bytes_from_utf8(U8 *s, STRLEN *len, bool *is_utf8)
4496 Found in file utf8.c
4500 Converts a string C<s> of length C<len> from ASCII into UTF8 encoding.
4501 Returns a pointer to the newly-created string, and sets C<len> to
4502 reflect the new length.
4504 NOTE: this function is experimental and may change or be
4505 removed without notice.
4507 U8* bytes_to_utf8(U8 *s, STRLEN *len)
4510 Found in file utf8.c
4514 Return true if the strings s1 and s2 differ case-insensitively, false
4515 if not (if they are equal case-insensitively). If u1 is true, the
4516 string s1 is assumed to be in UTF-8-encoded Unicode. If u2 is true,
4517 the string s2 is assumed to be in UTF-8-encoded Unicode. If u1 or u2
4518 are false, the respective string is assumed to be in native 8-bit
4521 If the pe1 and pe2 are non-NULL, the scanning pointers will be copied
4522 in there (they will point at the beginning of the I<next> character).
4523 If the pointers behind pe1 or pe2 are non-NULL, they are the end
4524 pointers beyond which scanning will not continue under any
4525 circustances. If the byte lengths l1 and l2 are non-zero, s1+l1 and
4526 s2+l2 will be used as goal end pointers that will also stop the scan,
4527 and which qualify towards defining a successful match: all the scans
4528 that define an explicit length must reach their goal pointers for
4529 a match to succeed).
4531 For case-insensitiveness, the "casefolding" of Unicode is used
4532 instead of upper/lowercasing both the characters, see
4533 http://www.unicode.org/unicode/reports/tr21/ (Case Mappings).
4535 I32 ibcmp_utf8(const char* a, char **pe1, UV l1, bool u1, const char* b, char **pe2, UV l2, bool u2)
4538 Found in file utf8.c
4542 Tests if some arbitrary number of bytes begins in a valid UTF-8
4543 character. Note that an INVARIANT (i.e. ASCII) character is a valid UTF-8 character.
4544 The actual number of bytes in the UTF-8 character will be returned if
4545 it is valid, otherwise 0.
4547 STRLEN is_utf8_char(U8 *p)
4550 Found in file utf8.c
4552 =item is_utf8_string
4554 Returns true if first C<len> bytes of the given string form a valid UTF8
4555 string, false otherwise. Note that 'a valid UTF8 string' does not mean
4556 'a string that contains UTF8' because a valid ASCII string is a valid
4559 bool is_utf8_string(U8 *s, STRLEN len)
4562 Found in file utf8.c
4564 =item pv_uni_display
4566 Build to the scalar dsv a displayable version of the string spv,
4567 length len, the displayable version being at most pvlim bytes long
4568 (if longer, the rest is truncated and "..." will be appended).
4570 The flags argument can have UNI_DISPLAY_ISPRINT set to display
4571 isPRINT()able characters as themselves, UNI_DISPLAY_BACKSLASH
4572 to display the \\[nrfta\\] as the backslashed versions (like '\n')
4573 (UNI_DISPLAY_BACKSLASH is preferred over UNI_DISPLAY_ISPRINT for \\).
4574 UNI_DISPLAY_QQ (and its alias UNI_DISPLAY_REGEX) have both
4575 UNI_DISPLAY_BACKSLASH and UNI_DISPLAY_ISPRINT turned on.
4577 The pointer to the PV of the dsv is returned.
4579 char* pv_uni_display(SV *dsv, U8 *spv, STRLEN len, STRLEN pvlim, UV flags)
4582 Found in file utf8.c
4584 =item sv_recode_to_utf8
4586 The encoding is assumed to be an Encode object, on entry the PV
4587 of the sv is assumed to be octets in that encoding, and the sv
4588 will be converted into Unicode (and UTF-8).
4590 If the sv already is UTF-8 (or if it is not POK), or if the encoding
4591 is not a reference, nothing is done to the sv. If the encoding is not
4592 an C<Encode::XS> Encoding object, bad things will happen.
4593 (See F<lib/encoding.pm> and L<Encode>).
4595 The PV of the sv is returned.
4597 char* sv_recode_to_utf8(SV* sv, SV *encoding)
4602 =item sv_uni_display
4604 Build to the scalar dsv a displayable version of the scalar sv,
4605 the displayable version being at most pvlim bytes long
4606 (if longer, the rest is truncated and "..." will be appended).
4608 The flags argument is as in pv_uni_display().
4610 The pointer to the PV of the dsv is returned.
4612 char* sv_uni_display(SV *dsv, SV *ssv, STRLEN pvlim, UV flags)
4615 Found in file utf8.c
4619 The "p" contains the pointer to the UTF-8 string encoding
4620 the character that is being converted.
4622 The "ustrp" is a pointer to the character buffer to put the
4623 conversion result to. The "lenp" is a pointer to the length
4626 The "swashp" is a pointer to the swash to use.
4628 Both the special and normal mappings are stored lib/unicore/To/Foo.pl,
4629 and loaded by SWASHGET, using lib/utf8_heavy.pl. The special (usually,
4630 but not always, a multicharacter mapping), is tried first.
4632 The "special" is a string like "utf8::ToSpecLower", which means the
4633 hash %utf8::ToSpecLower. The access to the hash is through
4634 Perl_to_utf8_case().
4636 The "normal" is a string like "ToLower" which means the swash
4639 UV to_utf8_case(U8 *p, U8* ustrp, STRLEN *lenp, SV **swash, char *normal, char *special)
4642 Found in file utf8.c
4646 Convert the UTF-8 encoded character at p to its foldcase version and
4647 store that in UTF-8 in ustrp and its length in bytes in lenp. Note
4648 that the ustrp needs to be at least UTF8_MAXLEN_FOLD+1 bytes since the
4649 foldcase version may be longer than the original character (up to
4652 The first character of the foldcased version is returned
4653 (but note, as explained above, that there may be more.)
4655 UV to_utf8_fold(U8 *p, U8* ustrp, STRLEN *lenp)
4658 Found in file utf8.c
4662 Convert the UTF-8 encoded character at p to its lowercase version and
4663 store that in UTF-8 in ustrp and its length in bytes in lenp. Note
4664 that the ustrp needs to be at least UTF8_MAXLEN_UCLC+1 bytes since the
4665 lowercase version may be longer than the original character (up to two
4668 The first character of the lowercased version is returned
4669 (but note, as explained above, that there may be more.)
4671 UV to_utf8_lower(U8 *p, U8* ustrp, STRLEN *lenp)
4674 Found in file utf8.c
4678 Convert the UTF-8 encoded character at p to its titlecase version and
4679 store that in UTF-8 in ustrp and its length in bytes in lenp. Note
4680 that the ustrp needs to be at least UTF8_MAXLEN_UCLC+1 bytes since the
4681 titlecase version may be longer than the original character (up to two
4684 The first character of the titlecased version is returned
4685 (but note, as explained above, that there may be more.)
4687 UV to_utf8_title(U8 *p, U8* ustrp, STRLEN *lenp)
4690 Found in file utf8.c
4694 Convert the UTF-8 encoded character at p to its uppercase version and
4695 store that in UTF-8 in ustrp and its length in bytes in lenp. Note
4696 that the ustrp needs to be at least UTF8_MAXLEN_UCLC+1 bytes since the
4697 uppercase version may be longer than the original character (up to two
4700 The first character of the uppercased version is returned
4701 (but note, as explained above, that there may be more.)
4703 UV to_utf8_upper(U8 *p, U8* ustrp, STRLEN *lenp)
4706 Found in file utf8.c
4708 =item utf8n_to_uvchr
4710 Returns the native character value of the first character in the string C<s>
4711 which is assumed to be in UTF8 encoding; C<retlen> will be set to the
4712 length, in bytes, of that character.
4714 Allows length and flags to be passed to low level routine.
4716 UV utf8n_to_uvchr(U8 *s, STRLEN curlen, STRLEN* retlen, U32 flags)
4719 Found in file utf8.c
4721 =item utf8n_to_uvuni
4723 Bottom level UTF-8 decode routine.
4724 Returns the unicode code point value of the first character in the string C<s>
4725 which is assumed to be in UTF8 encoding and no longer than C<curlen>;
4726 C<retlen> will be set to the length, in bytes, of that character.
4728 If C<s> does not point to a well-formed UTF8 character, the behaviour
4729 is dependent on the value of C<flags>: if it contains UTF8_CHECK_ONLY,
4730 it is assumed that the caller will raise a warning, and this function
4731 will silently just set C<retlen> to C<-1> and return zero. If the
4732 C<flags> does not contain UTF8_CHECK_ONLY, warnings about
4733 malformations will be given, C<retlen> will be set to the expected
4734 length of the UTF-8 character in bytes, and zero will be returned.
4736 The C<flags> can also contain various flags to allow deviations from
4737 the strict UTF-8 encoding (see F<utf8.h>).
4739 Most code should use utf8_to_uvchr() rather than call this directly.
4741 UV utf8n_to_uvuni(U8 *s, STRLEN curlen, STRLEN* retlen, U32 flags)
4744 Found in file utf8.c
4748 Returns the number of UTF8 characters between the UTF-8 pointers C<a>
4751 WARNING: use only if you *know* that the pointers point inside the
4754 IV utf8_distance(U8 *a, U8 *b)
4757 Found in file utf8.c
4761 Return the UTF-8 pointer C<s> displaced by C<off> characters, either
4762 forward or backward.
4764 WARNING: do not use the following unless you *know* C<off> is within
4765 the UTF-8 data pointed to by C<s> *and* that on entry C<s> is aligned
4766 on the first byte of character or just after the last byte of a character.
4768 U8* utf8_hop(U8 *s, I32 off)
4771 Found in file utf8.c
4775 Return the length of the UTF-8 char encoded string C<s> in characters.
4776 Stops at C<e> (inclusive). If C<e E<lt> s> or if the scan would end
4777 up past C<e>, croaks.
4779 STRLEN utf8_length(U8* s, U8 *e)
4782 Found in file utf8.c
4786 Converts a string C<s> of length C<len> from UTF8 into byte encoding.
4787 Unlike C<bytes_to_utf8>, this over-writes the original string, and
4788 updates len to contain the new length.
4789 Returns zero on failure, setting C<len> to -1.
4791 NOTE: this function is experimental and may change or be
4792 removed without notice.
4794 U8* utf8_to_bytes(U8 *s, STRLEN *len)
4797 Found in file utf8.c
4801 Returns the native character value of the first character in the string C<s>
4802 which is assumed to be in UTF8 encoding; C<retlen> will be set to the
4803 length, in bytes, of that character.
4805 If C<s> does not point to a well-formed UTF8 character, zero is
4806 returned and retlen is set, if possible, to -1.
4808 UV utf8_to_uvchr(U8 *s, STRLEN* retlen)
4811 Found in file utf8.c
4815 Returns the Unicode code point of the first character in the string C<s>
4816 which is assumed to be in UTF8 encoding; C<retlen> will be set to the
4817 length, in bytes, of that character.
4819 This function should only be used when returned UV is considered
4820 an index into the Unicode semantic tables (e.g. swashes).
4822 If C<s> does not point to a well-formed UTF8 character, zero is
4823 returned and retlen is set, if possible, to -1.
4825 UV utf8_to_uvuni(U8 *s, STRLEN* retlen)
4828 Found in file utf8.c
4832 Adds the UTF8 representation of the Native codepoint C<uv> to the end
4833 of the string C<d>; C<d> should be have at least C<UTF8_MAXLEN+1> free
4834 bytes available. The return value is the pointer to the byte after the
4835 end of the new character. In other words,
4837 d = uvchr_to_utf8(d, uv);
4839 is the recommended wide native character-aware way of saying
4843 U8* uvchr_to_utf8(U8 *d, UV uv)
4846 Found in file utf8.c
4848 =item uvuni_to_utf8_flags
4850 Adds the UTF8 representation of the Unicode codepoint C<uv> to the end
4851 of the string C<d>; C<d> should be have at least C<UTF8_MAXLEN+1> free
4852 bytes available. The return value is the pointer to the byte after the
4853 end of the new character. In other words,
4855 d = uvuni_to_utf8_flags(d, uv, flags);
4859 d = uvuni_to_utf8(d, uv);
4861 (which is equivalent to)
4863 d = uvuni_to_utf8_flags(d, uv, 0);
4865 is the recommended Unicode-aware way of saying
4869 U8* uvuni_to_utf8_flags(U8 *d, UV uv, UV flags)
4872 Found in file utf8.c
4877 =head1 Variables created by C<xsubpp> and C<xsubpp> internal functions
4883 Variable which is setup by C<xsubpp> to indicate the stack base offset,
4884 used by the C<ST>, C<XSprePUSH> and C<XSRETURN> macros. The C<dMARK> macro
4885 must be called prior to setup the C<MARK> variable.
4890 Found in file XSUB.h
4894 Variable which is setup by C<xsubpp> to indicate the
4895 class name for a C++ XS constructor. This is always a C<char*>. See C<THIS>.
4900 Found in file XSUB.h
4904 Sets up the C<ax> variable.
4905 This is usually handled automatically by C<xsubpp> by calling C<dXSARGS>.
4910 Found in file XSUB.h
4914 Sets up the C<items> variable.
4915 This is usually handled automatically by C<xsubpp> by calling C<dXSARGS>.
4920 Found in file XSUB.h
4924 Sets up stack and mark pointers for an XSUB, calling dSP and dMARK.
4925 Sets up the C<ax> and C<items> variables by calling C<dAX> and C<dITEMS>.
4926 This is usually handled automatically by C<xsubpp>.
4931 Found in file XSUB.h
4935 Sets up the C<ix> variable for an XSUB which has aliases. This is usually
4936 handled automatically by C<xsubpp>.
4941 Found in file XSUB.h
4945 Variable which is setup by C<xsubpp> to indicate the number of
4946 items on the stack. See L<perlxs/"Variable-length Parameter Lists">.
4951 Found in file XSUB.h
4955 Variable which is setup by C<xsubpp> to indicate which of an
4956 XSUB's aliases was used to invoke it. See L<perlxs/"The ALIAS: Keyword">.
4961 Found in file XSUB.h
4965 Used by C<xsubpp> to hook up XSUBs as Perl subs. Adds Perl prototypes to
4969 Found in file XSUB.h
4973 Variable which is setup by C<xsubpp> to hold the return value for an
4974 XSUB. This is always the proper type for the XSUB. See
4975 L<perlxs/"The RETVAL Variable">.
4980 Found in file XSUB.h
4984 Used to access elements on the XSUB's stack.
4989 Found in file XSUB.h
4993 Variable which is setup by C<xsubpp> to designate the object in a C++
4994 XSUB. This is always the proper type for the C++ object. See C<CLASS> and
4995 L<perlxs/"Using XS With C++">.
5000 Found in file XSUB.h
5004 Macro to declare an XSUB and its C parameter list. This is handled by
5008 Found in file XSUB.h
5010 =item XSRETURN_EMPTY
5012 Return an empty list from an XSUB immediately.
5018 Found in file XSUB.h
5022 The version identifier for an XS module. This is usually
5023 handled automatically by C<ExtUtils::MakeMaker>. See C<XS_VERSION_BOOTCHECK>.
5026 Found in file XSUB.h
5028 =item XS_VERSION_BOOTCHECK
5030 Macro to verify that a PM module's $VERSION variable matches the XS
5031 module's C<XS_VERSION> variable. This is usually handled automatically by
5032 C<xsubpp>. See L<perlxs/"The VERSIONCHECK: Keyword">.
5034 XS_VERSION_BOOTCHECK;
5037 Found in file XSUB.h
5042 =head1 Warning and Dieing
5048 This is the XSUB-writer's interface to Perl's C<die> function.
5049 Normally use this function the same way you use the C C<printf>
5050 function. See C<warn>.
5052 If you want to throw an exception object, assign the object to
5053 C<$@> and then pass C<Nullch> to croak():
5055 errsv = get_sv("@", TRUE);
5056 sv_setsv(errsv, exception_object);
5059 void croak(const char* pat, ...)
5062 Found in file util.c
5066 This is the XSUB-writer's interface to Perl's C<warn> function. Use this
5067 function the same way you use the C C<printf> function. See
5070 void warn(const char* pat, ...)
5073 Found in file util.c
5080 Until May 1997, this document was maintained by Jeff Okamoto
5081 <okamoto@corp.hp.com>. It is now maintained as part of Perl itself.
5083 With lots of help and suggestions from Dean Roehrich, Malcolm Beattie,
5084 Andreas Koenig, Paul Hudson, Ilya Zakharevich, Paul Marquess, Neil
5085 Bowers, Matthew Green, Tim Bunce, Spider Boardman, Ulrich Pfeifer,
5086 Stephen McCamant, and Gurusamy Sarathy.
5088 API Listing originally by Dean Roehrich <roehrich@cray.com>.
5090 Updated to be autogenerated from comments in the source by Benjamin Stuhl.
5094 perlguts(1), perlxs(1), perlxstut(1), perlintern(1)