This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
attributes-two.patch also contains a lot of const-ing, hence the
[perl5.git] / pod / perlapi.pod
1 =head1 NAME
2
3 perlapi - autogenerated documentation for the perl public API
4
5 =head1 DESCRIPTION
6
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
12 extensions.
13
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.
17
18 The listing is alphabetical, case insensitive.
19
20
21 =head1 "Gimme" Values
22
23 =over 8
24
25 =item GIMME
26
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.
30
31         U32     GIMME
32
33 =for hackers
34 Found in file op.h
35
36 =item GIMME_V
37
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,
40 respectively.
41
42         U32     GIMME_V
43
44 =for hackers
45 Found in file op.h
46
47 =item G_ARRAY
48
49 Used to indicate list context.  See C<GIMME_V>, C<GIMME> and
50 L<perlcall>.
51
52 =for hackers
53 Found in file cop.h
54
55 =item G_DISCARD
56
57 Indicates that arguments returned from a callback should be discarded.  See
58 L<perlcall>.
59
60 =for hackers
61 Found in file cop.h
62
63 =item G_EVAL
64
65 Used to force a Perl C<eval> wrapper around a callback.  See
66 L<perlcall>.
67
68 =for hackers
69 Found in file cop.h
70
71 =item G_NOARGS
72
73 Indicates that no arguments are being sent to a callback.  See
74 L<perlcall>.
75
76 =for hackers
77 Found in file cop.h
78
79 =item G_SCALAR
80
81 Used to indicate scalar context.  See C<GIMME_V>, C<GIMME>, and
82 L<perlcall>.
83
84 =for hackers
85 Found in file cop.h
86
87 =item G_VOID
88
89 Used to indicate void context.  See C<GIMME_V> and L<perlcall>.
90
91 =for hackers
92 Found in file cop.h
93
94
95 =back
96
97 =head1 Array Manipulation Functions
98
99 =over 8
100
101 =item AvFILL
102
103 Same as C<av_len()>.  Deprecated, use C<av_len()> instead.
104
105         int     AvFILL(AV* av)
106
107 =for hackers
108 Found in file av.h
109
110 =item av_clear
111
112 Clears an array, making it empty.  Does not free the memory used by the
113 array itself.
114
115         void    av_clear(AV* ar)
116
117 =for hackers
118 Found in file av.c
119
120 =item av_delete
121
122 Deletes the element indexed by C<key> from the array.  Returns the
123 deleted element. If C<flags> equals C<G_DISCARD>, the element is freed
124 and null is returned.
125
126         SV*     av_delete(AV* ar, I32 key, I32 flags)
127
128 =for hackers
129 Found in file av.c
130
131 =item av_exists
132
133 Returns true if the element indexed by C<key> has been initialized.
134
135 This relies on the fact that uninitialized array elements are set to
136 C<&PL_sv_undef>.
137
138         bool    av_exists(AV* ar, I32 key)
139
140 =for hackers
141 Found in file av.c
142
143 =item av_extend
144
145 Pre-extend an array.  The C<key> is the index to which the array should be
146 extended.
147
148         void    av_extend(AV* ar, I32 key)
149
150 =for hackers
151 Found in file av.c
152
153 =item av_fetch
154
155 Returns the SV at the specified index in the array.  The C<key> is the
156 index.  If C<lval> is set then the fetch will be part of a store.  Check
157 that the return value is non-null before dereferencing it to a C<SV*>.
158
159 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for
160 more information on how to use this function on tied arrays. 
161
162         SV**    av_fetch(AV* ar, I32 key, I32 lval)
163
164 =for hackers
165 Found in file av.c
166
167 =item av_fill
168
169 Ensure than an array has a given number of elements, equivalent to
170 Perl's C<$#array = $fill;>.
171
172         void    av_fill(AV* ar, I32 fill)
173
174 =for hackers
175 Found in file av.c
176
177 =item av_len
178
179 Returns the highest index in the array.  Returns -1 if the array is
180 empty.
181
182         I32     av_len(AV* ar)
183
184 =for hackers
185 Found in file av.c
186
187 =item av_make
188
189 Creates a new AV and populates it with a list of SVs.  The SVs are copied
190 into the array, so they may be freed after the call to av_make.  The new AV
191 will have a reference count of 1.
192
193         AV*     av_make(I32 size, SV** svp)
194
195 =for hackers
196 Found in file av.c
197
198 =item av_pop
199
200 Pops an SV off the end of the array.  Returns C<&PL_sv_undef> if the array
201 is empty.
202
203         SV*     av_pop(AV* ar)
204
205 =for hackers
206 Found in file av.c
207
208 =item av_push
209
210 Pushes an SV onto the end of the array.  The array will grow automatically
211 to accommodate the addition.
212
213         void    av_push(AV* ar, SV* val)
214
215 =for hackers
216 Found in file av.c
217
218 =item av_shift
219
220 Shifts an SV off the beginning of the array.
221
222         SV*     av_shift(AV* ar)
223
224 =for hackers
225 Found in file av.c
226
227 =item av_store
228
229 Stores an SV in an array.  The array index is specified as C<key>.  The
230 return value will be NULL if the operation failed or if the value did not
231 need to be actually stored within the array (as in the case of tied
232 arrays). Otherwise it can be dereferenced to get the original C<SV*>.  Note
233 that the caller is responsible for suitably incrementing the reference
234 count of C<val> before the call, and decrementing it if the function
235 returned NULL.
236
237 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for
238 more information on how to use this function on tied arrays.
239
240         SV**    av_store(AV* ar, I32 key, SV* val)
241
242 =for hackers
243 Found in file av.c
244
245 =item av_undef
246
247 Undefines the array.  Frees the memory used by the array itself.
248
249         void    av_undef(AV* ar)
250
251 =for hackers
252 Found in file av.c
253
254 =item av_unshift
255
256 Unshift the given number of C<undef> values onto the beginning of the
257 array.  The array will grow automatically to accommodate the addition.  You
258 must then use C<av_store> to assign values to these new elements.
259
260         void    av_unshift(AV* ar, I32 num)
261
262 =for hackers
263 Found in file av.c
264
265 =item get_av
266
267 Returns the AV of the specified Perl array.  If C<create> is set and the
268 Perl variable does not exist then it will be created.  If C<create> is not
269 set and the variable does not exist then NULL is returned.
270
271 NOTE: the perl_ form of this function is deprecated.
272
273         AV*     get_av(const char* name, I32 create)
274
275 =for hackers
276 Found in file perl.c
277
278 =item newAV
279
280 Creates a new AV.  The reference count is set to 1.
281
282         AV*     newAV()
283
284 =for hackers
285 Found in file av.c
286
287 =item sortsv
288
289 Sort an array. Here is an example:
290
291     sortsv(AvARRAY(av), av_len(av)+1, Perl_sv_cmp_locale);
292
293 See lib/sort.pm for details about controlling the sorting algorithm.
294
295         void    sortsv(SV ** array, size_t num_elts, SVCOMPARE_t cmp)
296
297 =for hackers
298 Found in file pp_sort.c
299
300
301 =back
302
303 =head1 Callback Functions
304
305 =over 8
306
307 =item call_argv
308
309 Performs a callback to the specified Perl sub.  See L<perlcall>.
310
311 NOTE: the perl_ form of this function is deprecated.
312
313         I32     call_argv(const char* sub_name, I32 flags, char** argv)
314
315 =for hackers
316 Found in file perl.c
317
318 =item call_method
319
320 Performs a callback to the specified Perl method.  The blessed object must
321 be on the stack.  See L<perlcall>.
322
323 NOTE: the perl_ form of this function is deprecated.
324
325         I32     call_method(const char* methname, I32 flags)
326
327 =for hackers
328 Found in file perl.c
329
330 =item call_pv
331
332 Performs a callback to the specified Perl sub.  See L<perlcall>.
333
334 NOTE: the perl_ form of this function is deprecated.
335
336         I32     call_pv(const char* sub_name, I32 flags)
337
338 =for hackers
339 Found in file perl.c
340
341 =item call_sv
342
343 Performs a callback to the Perl sub whose name is in the SV.  See
344 L<perlcall>.
345
346 NOTE: the perl_ form of this function is deprecated.
347
348         I32     call_sv(SV* sv, I32 flags)
349
350 =for hackers
351 Found in file perl.c
352
353 =item ENTER
354
355 Opening bracket on a callback.  See C<LEAVE> and L<perlcall>.
356
357                 ENTER;
358
359 =for hackers
360 Found in file scope.h
361
362 =item eval_pv
363
364 Tells Perl to C<eval> the given string and return an SV* result.
365
366 NOTE: the perl_ form of this function is deprecated.
367
368         SV*     eval_pv(const char* p, I32 croak_on_error)
369
370 =for hackers
371 Found in file perl.c
372
373 =item eval_sv
374
375 Tells Perl to C<eval> the string in the SV.
376
377 NOTE: the perl_ form of this function is deprecated.
378
379         I32     eval_sv(SV* sv, I32 flags)
380
381 =for hackers
382 Found in file perl.c
383
384 =item FREETMPS
385
386 Closing bracket for temporaries on a callback.  See C<SAVETMPS> and
387 L<perlcall>.
388
389                 FREETMPS;
390
391 =for hackers
392 Found in file scope.h
393
394 =item LEAVE
395
396 Closing bracket on a callback.  See C<ENTER> and L<perlcall>.
397
398                 LEAVE;
399
400 =for hackers
401 Found in file scope.h
402
403 =item SAVETMPS
404
405 Opening bracket for temporaries on a callback.  See C<FREETMPS> and
406 L<perlcall>.
407
408                 SAVETMPS;
409
410 =for hackers
411 Found in file scope.h
412
413
414 =back
415
416 =head1 Character classes
417
418 =over 8
419
420 =item isALNUM
421
422 Returns a boolean indicating whether the C C<char> is an ASCII alphanumeric
423 character (including underscore) or digit.
424
425         bool    isALNUM(char ch)
426
427 =for hackers
428 Found in file handy.h
429
430 =item isALPHA
431
432 Returns a boolean indicating whether the C C<char> is an ASCII alphabetic
433 character.
434
435         bool    isALPHA(char ch)
436
437 =for hackers
438 Found in file handy.h
439
440 =item isDIGIT
441
442 Returns a boolean indicating whether the C C<char> is an ASCII
443 digit.
444
445         bool    isDIGIT(char ch)
446
447 =for hackers
448 Found in file handy.h
449
450 =item isLOWER
451
452 Returns a boolean indicating whether the C C<char> is a lowercase
453 character.
454
455         bool    isLOWER(char ch)
456
457 =for hackers
458 Found in file handy.h
459
460 =item isSPACE
461
462 Returns a boolean indicating whether the C C<char> is whitespace.
463
464         bool    isSPACE(char ch)
465
466 =for hackers
467 Found in file handy.h
468
469 =item isUPPER
470
471 Returns a boolean indicating whether the C C<char> is an uppercase
472 character.
473
474         bool    isUPPER(char ch)
475
476 =for hackers
477 Found in file handy.h
478
479 =item toLOWER
480
481 Converts the specified character to lowercase.
482
483         char    toLOWER(char ch)
484
485 =for hackers
486 Found in file handy.h
487
488 =item toUPPER
489
490 Converts the specified character to uppercase.
491
492         char    toUPPER(char ch)
493
494 =for hackers
495 Found in file handy.h
496
497
498 =back
499
500 =head1 Cloning an interpreter
501
502 =over 8
503
504 =item perl_clone
505
506 Create and return a new interpreter by cloning the current one.
507
508 perl_clone takes these flags as parameters:
509
510 CLONEf_COPY_STACKS - is used to, well, copy the stacks also, 
511 without it we only clone the data and zero the stacks, 
512 with it we copy the stacks and the new perl interpreter is 
513 ready to run at the exact same point as the previous one. 
514 The pseudo-fork code uses COPY_STACKS while the 
515 threads->new doesn't.
516
517 CLONEf_KEEP_PTR_TABLE
518 perl_clone keeps a ptr_table with the pointer of the old 
519 variable as a key and the new variable as a value, 
520 this allows it to check if something has been cloned and not 
521 clone it again but rather just use the value and increase the 
522 refcount. If KEEP_PTR_TABLE is not set then perl_clone will kill 
523 the ptr_table using the function 
524 C<ptr_table_free(PL_ptr_table); PL_ptr_table = NULL;>, 
525 reason to keep it around is if you want to dup some of your own 
526 variable who are outside the graph perl scans, example of this 
527 code is in threads.xs create
528
529 CLONEf_CLONE_HOST
530 This is a win32 thing, it is ignored on unix, it tells perls 
531 win32host code (which is c++) to clone itself, this is needed on 
532 win32 if you want to run two threads at the same time, 
533 if you just want to do some stuff in a separate perl interpreter 
534 and then throw it away and return to the original one, 
535 you don't need to do anything.
536
537         PerlInterpreter*        perl_clone(PerlInterpreter* interp, UV flags)
538
539 =for hackers
540 Found in file sv.c
541
542
543 =back
544
545 =head1 CV Manipulation Functions
546
547 =over 8
548
549 =item CvSTASH
550
551 Returns the stash of the CV.
552
553         HV*     CvSTASH(CV* cv)
554
555 =for hackers
556 Found in file cv.h
557
558 =item get_cv
559
560 Returns the CV of the specified Perl subroutine.  If C<create> is set and
561 the Perl subroutine does not exist then it will be declared (which has the
562 same effect as saying C<sub name;>).  If C<create> is not set and the
563 subroutine does not exist then NULL is returned.
564
565 NOTE: the perl_ form of this function is deprecated.
566
567         CV*     get_cv(const char* name, I32 create)
568
569 =for hackers
570 Found in file perl.c
571
572
573 =back
574
575 =head1 Embedding Functions
576
577 =over 8
578
579 =item cv_undef
580
581 Clear out all the active components of a CV. This can happen either
582 by an explicit C<undef &foo>, or by the reference count going to zero.
583 In the former case, we keep the CvOUTSIDE pointer, so that any anonymous
584 children can still follow the full lexical scope chain.
585
586         void    cv_undef(CV* cv)
587
588 =for hackers
589 Found in file op.c
590
591 =item load_module
592
593 Loads the module whose name is pointed to by the string part of name.
594 Note that the actual module name, not its filename, should be given.
595 Eg, "Foo::Bar" instead of "Foo/Bar.pm".  flags can be any of
596 PERL_LOADMOD_DENY, PERL_LOADMOD_NOIMPORT, or PERL_LOADMOD_IMPORT_OPS
597 (or 0 for no flags). ver, if specified, provides version semantics
598 similar to C<use Foo::Bar VERSION>.  The optional trailing SV*
599 arguments can be used to specify arguments to the module's import()
600 method, similar to C<use Foo::Bar VERSION LIST>.
601
602         void    load_module(U32 flags, SV* name, SV* ver, ...)
603
604 =for hackers
605 Found in file op.c
606
607 =item nothreadhook
608
609 Stub that provides thread hook for perl_destruct when there are
610 no threads.
611
612         int     nothreadhook()
613
614 =for hackers
615 Found in file perl.c
616
617 =item perl_alloc
618
619 Allocates a new Perl interpreter.  See L<perlembed>.
620
621         PerlInterpreter*        perl_alloc()
622
623 =for hackers
624 Found in file perl.c
625
626 =item perl_construct
627
628 Initializes a new Perl interpreter.  See L<perlembed>.
629
630         void    perl_construct(PerlInterpreter* interp)
631
632 =for hackers
633 Found in file perl.c
634
635 =item perl_destruct
636
637 Shuts down a Perl interpreter.  See L<perlembed>.
638
639         int     perl_destruct(PerlInterpreter* interp)
640
641 =for hackers
642 Found in file perl.c
643
644 =item perl_free
645
646 Releases a Perl interpreter.  See L<perlembed>.
647
648         void    perl_free(PerlInterpreter* interp)
649
650 =for hackers
651 Found in file perl.c
652
653 =item perl_parse
654
655 Tells a Perl interpreter to parse a Perl script.  See L<perlembed>.
656
657         int     perl_parse(PerlInterpreter* interp, XSINIT_t xsinit, int argc, char** argv, char** env)
658
659 =for hackers
660 Found in file perl.c
661
662 =item perl_run
663
664 Tells a Perl interpreter to run.  See L<perlembed>.
665
666         int     perl_run(PerlInterpreter* interp)
667
668 =for hackers
669 Found in file perl.c
670
671 =item require_pv
672
673 Tells Perl to C<require> the file named by the string argument.  It is
674 analogous to the Perl code C<eval "require '$file'">.  It's even
675 implemented that way; consider using load_module instead.
676
677 NOTE: the perl_ form of this function is deprecated.
678
679         void    require_pv(const char* pv)
680
681 =for hackers
682 Found in file perl.c
683
684
685 =back
686
687 =head1 Functions in file pp_pack.c
688
689
690 =over 8
691
692 =item packlist
693
694 The engine implementing pack() Perl function.
695
696         void    packlist(SV *cat, char *pat, char *patend, SV **beglist, SV **endlist)
697
698 =for hackers
699 Found in file pp_pack.c
700
701 =item pack_cat
702
703 The engine implementing pack() Perl function. Note: parameters next_in_list and
704 flags are not used. This call should not be used; use packlist instead.
705
706         void    pack_cat(SV *cat, char *pat, char *patend, SV **beglist, SV **endlist, SV ***next_in_list, U32 flags)
707
708 =for hackers
709 Found in file pp_pack.c
710
711 =item unpackstring
712
713 The engine implementing unpack() Perl function. C<unpackstring> puts the
714 extracted list items on the stack and returns the number of elements.
715 Issue C<PUTBACK> before and C<SPAGAIN> after the call to this function.
716
717         I32     unpackstring(char *pat, char *patend, char *s, char *strend, U32 flags)
718
719 =for hackers
720 Found in file pp_pack.c
721
722 =item unpack_str
723
724 The engine implementing unpack() Perl function. Note: parameters strbeg, new_s
725 and ocnt are not used. This call should not be used, use unpackstring instead.
726
727         I32     unpack_str(char *pat, char *patend, char *s, char *strbeg, char *strend, char **new_s, I32 ocnt, U32 flags)
728
729 =for hackers
730 Found in file pp_pack.c
731
732
733 =back
734
735 =head1 Global Variables
736
737 =over 8
738
739 =item PL_modglobal
740
741 C<PL_modglobal> is a general purpose, interpreter global HV for use by
742 extensions that need to keep information on a per-interpreter basis.
743 In a pinch, it can also be used as a symbol table for extensions
744 to share data among each other.  It is a good idea to use keys
745 prefixed by the package name of the extension that owns the data.
746
747         HV*     PL_modglobal
748
749 =for hackers
750 Found in file intrpvar.h
751
752 =item PL_na
753
754 A convenience variable which is typically used with C<SvPV> when one
755 doesn't care about the length of the string.  It is usually more efficient
756 to either declare a local variable and use that instead or to use the
757 C<SvPV_nolen> macro.
758
759         STRLEN  PL_na
760
761 =for hackers
762 Found in file thrdvar.h
763
764 =item PL_sv_no
765
766 This is the C<false> SV.  See C<PL_sv_yes>.  Always refer to this as
767 C<&PL_sv_no>.
768
769         SV      PL_sv_no
770
771 =for hackers
772 Found in file intrpvar.h
773
774 =item PL_sv_undef
775
776 This is the C<undef> SV.  Always refer to this as C<&PL_sv_undef>.
777
778         SV      PL_sv_undef
779
780 =for hackers
781 Found in file intrpvar.h
782
783 =item PL_sv_yes
784
785 This is the C<true> SV.  See C<PL_sv_no>.  Always refer to this as
786 C<&PL_sv_yes>.
787
788         SV      PL_sv_yes
789
790 =for hackers
791 Found in file intrpvar.h
792
793
794 =back
795
796 =head1 GV Functions
797
798 =over 8
799
800 =item GvSV
801
802 Return the SV from the GV.
803
804         SV*     GvSV(GV* gv)
805
806 =for hackers
807 Found in file gv.h
808
809 =item gv_fetchmeth
810
811 Returns the glob with the given C<name> and a defined subroutine or
812 C<NULL>.  The glob lives in the given C<stash>, or in the stashes
813 accessible via @ISA and UNIVERSAL::.
814
815 The argument C<level> should be either 0 or -1.  If C<level==0>, as a
816 side-effect creates a glob with the given C<name> in the given C<stash>
817 which in the case of success contains an alias for the subroutine, and sets
818 up caching info for this glob.  Similarly for all the searched stashes.
819
820 This function grants C<"SUPER"> token as a postfix of the stash name. The
821 GV returned from C<gv_fetchmeth> may be a method cache entry, which is not
822 visible to Perl code.  So when calling C<call_sv>, you should not use
823 the GV directly; instead, you should use the method's CV, which can be
824 obtained from the GV with the C<GvCV> macro.
825
826         GV*     gv_fetchmeth(HV* stash, const char* name, STRLEN len, I32 level)
827
828 =for hackers
829 Found in file gv.c
830
831 =item gv_fetchmethod
832
833 See L<gv_fetchmethod_autoload>.
834
835         GV*     gv_fetchmethod(HV* stash, const char* name)
836
837 =for hackers
838 Found in file gv.c
839
840 =item gv_fetchmethod_autoload
841
842 Returns the glob which contains the subroutine to call to invoke the method
843 on the C<stash>.  In fact in the presence of autoloading this may be the
844 glob for "AUTOLOAD".  In this case the corresponding variable $AUTOLOAD is
845 already setup.
846
847 The third parameter of C<gv_fetchmethod_autoload> determines whether
848 AUTOLOAD lookup is performed if the given method is not present: non-zero
849 means yes, look for AUTOLOAD; zero means no, don't look for AUTOLOAD.
850 Calling C<gv_fetchmethod> is equivalent to calling C<gv_fetchmethod_autoload>
851 with a non-zero C<autoload> parameter.
852
853 These functions grant C<"SUPER"> token as a prefix of the method name. Note
854 that if you want to keep the returned glob for a long time, you need to
855 check for it being "AUTOLOAD", since at the later time the call may load a
856 different subroutine due to $AUTOLOAD changing its value. Use the glob
857 created via a side effect to do this.
858
859 These functions have the same side-effects and as C<gv_fetchmeth> with
860 C<level==0>.  C<name> should be writable if contains C<':'> or C<'
861 ''>. The warning against passing the GV returned by C<gv_fetchmeth> to
862 C<call_sv> apply equally to these functions.
863
864         GV*     gv_fetchmethod_autoload(HV* stash, const char* name, I32 autoload)
865
866 =for hackers
867 Found in file gv.c
868
869 =item gv_fetchmeth_autoload
870
871 Same as gv_fetchmeth(), but looks for autoloaded subroutines too.
872 Returns a glob for the subroutine.
873
874 For an autoloaded subroutine without a GV, will create a GV even
875 if C<level < 0>.  For an autoloaded subroutine without a stub, GvCV()
876 of the result may be zero.
877
878         GV*     gv_fetchmeth_autoload(HV* stash, const char* name, STRLEN len, I32 level)
879
880 =for hackers
881 Found in file gv.c
882
883 =item gv_stashpv
884
885 Returns a pointer to the stash for a specified package.  C<name> should
886 be a valid UTF-8 string and must be null-terminated.  If C<create> is set
887 then the package will be created if it does not already exist.  If C<create>
888 is not set and the package does not exist then NULL is returned.
889
890         HV*     gv_stashpv(const char* name, I32 create)
891
892 =for hackers
893 Found in file gv.c
894
895 =item gv_stashpvn
896
897 Returns a pointer to the stash for a specified package.  C<name> should
898 be a valid UTF-8 string.  The C<namelen> parameter indicates the length of
899 the C<name>, in bytes.  If C<create> is set then the package will be
900 created if it does not already exist.  If C<create> is not set and the
901 package does not exist then NULL is returned.
902
903         HV*     gv_stashpvn(const char* name, U32 namelen, I32 create)
904
905 =for hackers
906 Found in file gv.c
907
908 =item gv_stashsv
909
910 Returns a pointer to the stash for a specified package, which must be a
911 valid UTF-8 string.  See C<gv_stashpv>.
912
913         HV*     gv_stashsv(SV* sv, I32 create)
914
915 =for hackers
916 Found in file gv.c
917
918
919 =back
920
921 =head1 Handy Values
922
923 =over 8
924
925 =item Nullav
926
927 Null AV pointer.
928
929 =for hackers
930 Found in file av.h
931
932 =item Nullch
933
934 Null character pointer.
935
936 =for hackers
937 Found in file handy.h
938
939 =item Nullcv
940
941 Null CV pointer.
942
943 =for hackers
944 Found in file cv.h
945
946 =item Nullhv
947
948 Null HV pointer.
949
950 =for hackers
951 Found in file hv.h
952
953 =item Nullsv
954
955 Null SV pointer.
956
957 =for hackers
958 Found in file handy.h
959
960
961 =back
962
963 =head1 Hash Manipulation Functions
964
965 =over 8
966
967 =item get_hv
968
969 Returns the HV of the specified Perl hash.  If C<create> is set and the
970 Perl variable does not exist then it will be created.  If C<create> is not
971 set and the variable does not exist then NULL is returned.
972
973 NOTE: the perl_ form of this function is deprecated.
974
975         HV*     get_hv(const char* name, I32 create)
976
977 =for hackers
978 Found in file perl.c
979
980 =item HEf_SVKEY
981
982 This flag, used in the length slot of hash entries and magic structures,
983 specifies the structure contains an C<SV*> pointer where a C<char*> pointer
984 is to be expected. (For information only--not to be used).
985
986 =for hackers
987 Found in file hv.h
988
989 =item HeHASH
990
991 Returns the computed hash stored in the hash entry.
992
993         U32     HeHASH(HE* he)
994
995 =for hackers
996 Found in file hv.h
997
998 =item HeKEY
999
1000 Returns the actual pointer stored in the key slot of the hash entry. The
1001 pointer may be either C<char*> or C<SV*>, depending on the value of
1002 C<HeKLEN()>.  Can be assigned to.  The C<HePV()> or C<HeSVKEY()> macros are
1003 usually preferable for finding the value of a key.
1004
1005         void*   HeKEY(HE* he)
1006
1007 =for hackers
1008 Found in file hv.h
1009
1010 =item HeKLEN
1011
1012 If this is negative, and amounts to C<HEf_SVKEY>, it indicates the entry
1013 holds an C<SV*> key.  Otherwise, holds the actual length of the key.  Can
1014 be assigned to. The C<HePV()> macro is usually preferable for finding key
1015 lengths.
1016
1017         STRLEN  HeKLEN(HE* he)
1018
1019 =for hackers
1020 Found in file hv.h
1021
1022 =item HePV
1023
1024 Returns the key slot of the hash entry as a C<char*> value, doing any
1025 necessary dereferencing of possibly C<SV*> keys.  The length of the string
1026 is placed in C<len> (this is a macro, so do I<not> use C<&len>).  If you do
1027 not care about what the length of the key is, you may use the global
1028 variable C<PL_na>, though this is rather less efficient than using a local
1029 variable.  Remember though, that hash keys in perl are free to contain
1030 embedded nulls, so using C<strlen()> or similar is not a good way to find
1031 the length of hash keys. This is very similar to the C<SvPV()> macro
1032 described elsewhere in this document.
1033
1034         char*   HePV(HE* he, STRLEN len)
1035
1036 =for hackers
1037 Found in file hv.h
1038
1039 =item HeSVKEY
1040
1041 Returns the key as an C<SV*>, or C<Nullsv> if the hash entry does not
1042 contain an C<SV*> key.
1043
1044         SV*     HeSVKEY(HE* he)
1045
1046 =for hackers
1047 Found in file hv.h
1048
1049 =item HeSVKEY_force
1050
1051 Returns the key as an C<SV*>.  Will create and return a temporary mortal
1052 C<SV*> if the hash entry contains only a C<char*> key.
1053
1054         SV*     HeSVKEY_force(HE* he)
1055
1056 =for hackers
1057 Found in file hv.h
1058
1059 =item HeSVKEY_set
1060
1061 Sets the key to a given C<SV*>, taking care to set the appropriate flags to
1062 indicate the presence of an C<SV*> key, and returns the same
1063 C<SV*>.
1064
1065         SV*     HeSVKEY_set(HE* he, SV* sv)
1066
1067 =for hackers
1068 Found in file hv.h
1069
1070 =item HeVAL
1071
1072 Returns the value slot (type C<SV*>) stored in the hash entry.
1073
1074         SV*     HeVAL(HE* he)
1075
1076 =for hackers
1077 Found in file hv.h
1078
1079 =item HvNAME
1080
1081 Returns the package name of a stash.  See C<SvSTASH>, C<CvSTASH>.
1082
1083         char*   HvNAME(HV* stash)
1084
1085 =for hackers
1086 Found in file hv.h
1087
1088 =item hv_clear
1089
1090 Clears a hash, making it empty.
1091
1092         void    hv_clear(HV* tb)
1093
1094 =for hackers
1095 Found in file hv.c
1096
1097 =item hv_clear_placeholders
1098
1099 Clears any placeholders from a hash.  If a restricted hash has any of its keys
1100 marked as readonly and the key is subsequently deleted, the key is not actually
1101 deleted but is marked by assigning it a value of &PL_sv_placeholder.  This tags
1102 it so it will be ignored by future operations such as iterating over the hash,
1103 but will still allow the hash to have a value reassigned to the key at some
1104 future point.  This function clears any such placeholder keys from the hash.
1105 See Hash::Util::lock_keys() for an example of its use.
1106
1107         void    hv_clear_placeholders(HV* hb)
1108
1109 =for hackers
1110 Found in file hv.c
1111
1112 =item hv_delete
1113
1114 Deletes a key/value pair in the hash.  The value SV is removed from the
1115 hash and returned to the caller.  The C<klen> is the length of the key.
1116 The C<flags> value will normally be zero; if set to G_DISCARD then NULL
1117 will be returned.
1118
1119         SV*     hv_delete(HV* tb, const char* key, I32 klen, I32 flags)
1120
1121 =for hackers
1122 Found in file hv.c
1123
1124 =item hv_delete_ent
1125
1126 Deletes a key/value pair in the hash.  The value SV is removed from the
1127 hash and returned to the caller.  The C<flags> value will normally be zero;
1128 if set to G_DISCARD then NULL will be returned.  C<hash> can be a valid
1129 precomputed hash value, or 0 to ask for it to be computed.
1130
1131         SV*     hv_delete_ent(HV* tb, SV* key, I32 flags, U32 hash)
1132
1133 =for hackers
1134 Found in file hv.c
1135
1136 =item hv_exists
1137
1138 Returns a boolean indicating whether the specified hash key exists.  The
1139 C<klen> is the length of the key.
1140
1141         bool    hv_exists(HV* tb, const char* key, I32 klen)
1142
1143 =for hackers
1144 Found in file hv.c
1145
1146 =item hv_exists_ent
1147
1148 Returns a boolean indicating whether the specified hash key exists. C<hash>
1149 can be a valid precomputed hash value, or 0 to ask for it to be
1150 computed.
1151
1152         bool    hv_exists_ent(HV* tb, SV* key, U32 hash)
1153
1154 =for hackers
1155 Found in file hv.c
1156
1157 =item hv_fetch
1158
1159 Returns the SV which corresponds to the specified key in the hash.  The
1160 C<klen> is the length of the key.  If C<lval> is set then the fetch will be
1161 part of a store.  Check that the return value is non-null before
1162 dereferencing it to an C<SV*>.
1163
1164 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
1165 information on how to use this function on tied hashes.
1166
1167         SV**    hv_fetch(HV* tb, const char* key, I32 klen, I32 lval)
1168
1169 =for hackers
1170 Found in file hv.c
1171
1172 =item hv_fetch_ent
1173
1174 Returns the hash entry which corresponds to the specified key in the hash.
1175 C<hash> must be a valid precomputed hash number for the given C<key>, or 0
1176 if you want the function to compute it.  IF C<lval> is set then the fetch
1177 will be part of a store.  Make sure the return value is non-null before
1178 accessing it.  The return value when C<tb> is a tied hash is a pointer to a
1179 static location, so be sure to make a copy of the structure if you need to
1180 store it somewhere.
1181
1182 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
1183 information on how to use this function on tied hashes.
1184
1185         HE*     hv_fetch_ent(HV* tb, SV* key, I32 lval, U32 hash)
1186
1187 =for hackers
1188 Found in file hv.c
1189
1190 =item hv_iterinit
1191
1192 Prepares a starting point to traverse a hash table.  Returns the number of
1193 keys in the hash (i.e. the same as C<HvKEYS(tb)>).  The return value is
1194 currently only meaningful for hashes without tie magic.
1195
1196 NOTE: Before version 5.004_65, C<hv_iterinit> used to return the number of
1197 hash buckets that happen to be in use.  If you still need that esoteric
1198 value, you can get it through the macro C<HvFILL(tb)>.
1199
1200
1201         I32     hv_iterinit(HV* tb)
1202
1203 =for hackers
1204 Found in file hv.c
1205
1206 =item hv_iterkey
1207
1208 Returns the key from the current position of the hash iterator.  See
1209 C<hv_iterinit>.
1210
1211         char*   hv_iterkey(HE* entry, I32* retlen)
1212
1213 =for hackers
1214 Found in file hv.c
1215
1216 =item hv_iterkeysv
1217
1218 Returns the key as an C<SV*> from the current position of the hash
1219 iterator.  The return value will always be a mortal copy of the key.  Also
1220 see C<hv_iterinit>.
1221
1222         SV*     hv_iterkeysv(HE* entry)
1223
1224 =for hackers
1225 Found in file hv.c
1226
1227 =item hv_iternext
1228
1229 Returns entries from a hash iterator.  See C<hv_iterinit>.
1230
1231 You may call C<hv_delete> or C<hv_delete_ent> on the hash entry that the
1232 iterator currently points to, without losing your place or invalidating your
1233 iterator.  Note that in this case the current entry is deleted from the hash
1234 with your iterator holding the last reference to it.  Your iterator is flagged
1235 to free the entry on the next call to C<hv_iternext>, so you must not discard
1236 your iterator immediately else the entry will leak - call C<hv_iternext> to
1237 trigger the resource deallocation.
1238
1239         HE*     hv_iternext(HV* tb)
1240
1241 =for hackers
1242 Found in file hv.c
1243
1244 =item hv_iternextsv
1245
1246 Performs an C<hv_iternext>, C<hv_iterkey>, and C<hv_iterval> in one
1247 operation.
1248
1249         SV*     hv_iternextsv(HV* hv, char** key, I32* retlen)
1250
1251 =for hackers
1252 Found in file hv.c
1253
1254 =item hv_iternext_flags
1255
1256 Returns entries from a hash iterator.  See C<hv_iterinit> and C<hv_iternext>.
1257 The C<flags> value will normally be zero; if HV_ITERNEXT_WANTPLACEHOLDERS is
1258 set the placeholders keys (for restricted hashes) will be returned in addition
1259 to normal keys. By default placeholders are automatically skipped over.
1260 Currently a placeholder is implemented with a value that is
1261 C<&Perl_sv_placeholder>. Note that the implementation of placeholders and
1262 restricted hashes may change, and the implementation currently is
1263 insufficiently abstracted for any change to be tidy.
1264
1265 NOTE: this function is experimental and may change or be
1266 removed without notice.
1267
1268         HE*     hv_iternext_flags(HV* tb, I32 flags)
1269
1270 =for hackers
1271 Found in file hv.c
1272
1273 =item hv_iterval
1274
1275 Returns the value from the current position of the hash iterator.  See
1276 C<hv_iterkey>.
1277
1278         SV*     hv_iterval(HV* tb, HE* entry)
1279
1280 =for hackers
1281 Found in file hv.c
1282
1283 =item hv_magic
1284
1285 Adds magic to a hash.  See C<sv_magic>.
1286
1287         void    hv_magic(HV* hv, GV* gv, int how)
1288
1289 =for hackers
1290 Found in file hv.c
1291
1292 =item hv_scalar
1293
1294 Evaluates the hash in scalar context and returns the result. Handles magic when the hash is tied.
1295
1296         SV*     hv_scalar(HV* hv)
1297
1298 =for hackers
1299 Found in file hv.c
1300
1301 =item hv_store
1302
1303 Stores an SV in a hash.  The hash key is specified as C<key> and C<klen> is
1304 the length of the key.  The C<hash> parameter is the precomputed hash
1305 value; if it is zero then Perl will compute it.  The return value will be
1306 NULL if the operation failed or if the value did not need to be actually
1307 stored within the hash (as in the case of tied hashes).  Otherwise it can
1308 be dereferenced to get the original C<SV*>.  Note that the caller is
1309 responsible for suitably incrementing the reference count of C<val> before
1310 the call, and decrementing it if the function returned NULL.  Effectively
1311 a successful hv_store takes ownership of one reference to C<val>.  This is
1312 usually what you want; a newly created SV has a reference count of one, so
1313 if all your code does is create SVs then store them in a hash, hv_store
1314 will own the only reference to the new SV, and your code doesn't need to do
1315 anything further to tidy up.  hv_store is not implemented as a call to
1316 hv_store_ent, and does not create a temporary SV for the key, so if your
1317 key data is not already in SV form then use hv_store in preference to
1318 hv_store_ent.
1319
1320 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
1321 information on how to use this function on tied hashes.
1322
1323         SV**    hv_store(HV* tb, const char* key, I32 klen, SV* val, U32 hash)
1324
1325 =for hackers
1326 Found in file hv.c
1327
1328 =item hv_store_ent
1329
1330 Stores C<val> in a hash.  The hash key is specified as C<key>.  The C<hash>
1331 parameter is the precomputed hash value; if it is zero then Perl will
1332 compute it.  The return value is the new hash entry so created.  It will be
1333 NULL if the operation failed or if the value did not need to be actually
1334 stored within the hash (as in the case of tied hashes).  Otherwise the
1335 contents of the return value can be accessed using the C<He?> macros
1336 described here.  Note that the caller is responsible for suitably
1337 incrementing the reference count of C<val> before the call, and
1338 decrementing it if the function returned NULL.  Effectively a successful
1339 hv_store_ent takes ownership of one reference to C<val>.  This is
1340 usually what you want; a newly created SV has a reference count of one, so
1341 if all your code does is create SVs then store them in a hash, hv_store
1342 will own the only reference to the new SV, and your code doesn't need to do
1343 anything further to tidy up.  Note that hv_store_ent only reads the C<key>;
1344 unlike C<val> it does not take ownership of it, so maintaining the correct
1345 reference count on C<key> is entirely the caller's responsibility.  hv_store
1346 is not implemented as a call to hv_store_ent, and does not create a temporary
1347 SV for the key, so if your key data is not already in SV form then use
1348 hv_store in preference to hv_store_ent.
1349
1350 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
1351 information on how to use this function on tied hashes.
1352
1353         HE*     hv_store_ent(HV* tb, SV* key, SV* val, U32 hash)
1354
1355 =for hackers
1356 Found in file hv.c
1357
1358 =item hv_undef
1359
1360 Undefines the hash.
1361
1362         void    hv_undef(HV* tb)
1363
1364 =for hackers
1365 Found in file hv.c
1366
1367 =item newHV
1368
1369 Creates a new HV.  The reference count is set to 1.
1370
1371         HV*     newHV()
1372
1373 =for hackers
1374 Found in file hv.c
1375
1376
1377 =back
1378
1379 =head1 Magical Functions
1380
1381 =over 8
1382
1383 =item mg_clear
1384
1385 Clear something magical that the SV represents.  See C<sv_magic>.
1386
1387         int     mg_clear(SV* sv)
1388
1389 =for hackers
1390 Found in file mg.c
1391
1392 =item mg_copy
1393
1394 Copies the magic from one SV to another.  See C<sv_magic>.
1395
1396         int     mg_copy(SV* sv, SV* nsv, const char* key, I32 klen)
1397
1398 =for hackers
1399 Found in file mg.c
1400
1401 =item mg_find
1402
1403 Finds the magic pointer for type matching the SV.  See C<sv_magic>.
1404
1405         MAGIC*  mg_find(SV* sv, int type)
1406
1407 =for hackers
1408 Found in file mg.c
1409
1410 =item mg_free
1411
1412 Free any magic storage used by the SV.  See C<sv_magic>.
1413
1414         int     mg_free(SV* sv)
1415
1416 =for hackers
1417 Found in file mg.c
1418
1419 =item mg_get
1420
1421 Do magic after a value is retrieved from the SV.  See C<sv_magic>.
1422
1423         int     mg_get(SV* sv)
1424
1425 =for hackers
1426 Found in file mg.c
1427
1428 =item mg_length
1429
1430 Report on the SV's length.  See C<sv_magic>.
1431
1432         U32     mg_length(SV* sv)
1433
1434 =for hackers
1435 Found in file mg.c
1436
1437 =item mg_magical
1438
1439 Turns on the magical status of an SV.  See C<sv_magic>.
1440
1441         void    mg_magical(SV* sv)
1442
1443 =for hackers
1444 Found in file mg.c
1445
1446 =item mg_set
1447
1448 Do magic after a value is assigned to the SV.  See C<sv_magic>.
1449
1450         int     mg_set(SV* sv)
1451
1452 =for hackers
1453 Found in file mg.c
1454
1455 =item SvGETMAGIC
1456
1457 Invokes C<mg_get> on an SV if it has 'get' magic.  This macro evaluates its
1458 argument more than once.
1459
1460         void    SvGETMAGIC(SV* sv)
1461
1462 =for hackers
1463 Found in file sv.h
1464
1465 =item SvLOCK
1466
1467 Arranges for a mutual exclusion lock to be obtained on sv if a suitable module
1468 has been loaded.
1469
1470         void    SvLOCK(SV* sv)
1471
1472 =for hackers
1473 Found in file sv.h
1474
1475 =item SvSETMAGIC
1476
1477 Invokes C<mg_set> on an SV if it has 'set' magic.  This macro evaluates its
1478 argument more than once.
1479
1480         void    SvSETMAGIC(SV* sv)
1481
1482 =for hackers
1483 Found in file sv.h
1484
1485 =item SvSetMagicSV
1486
1487 Like C<SvSetSV>, but does any set magic required afterwards.
1488
1489         void    SvSetMagicSV(SV* dsb, SV* ssv)
1490
1491 =for hackers
1492 Found in file sv.h
1493
1494 =item SvSetMagicSV_nosteal
1495
1496 Like C<SvSetSV_nosteal>, but does any set magic required afterwards.
1497
1498         void    SvSetMagicSV_nosteal(SV* dsv, SV* ssv)
1499
1500 =for hackers
1501 Found in file sv.h
1502
1503 =item SvSetSV
1504
1505 Calls C<sv_setsv> if dsv is not the same as ssv.  May evaluate arguments
1506 more than once.
1507
1508         void    SvSetSV(SV* dsb, SV* ssv)
1509
1510 =for hackers
1511 Found in file sv.h
1512
1513 =item SvSetSV_nosteal
1514
1515 Calls a non-destructive version of C<sv_setsv> if dsv is not the same as
1516 ssv. May evaluate arguments more than once.
1517
1518         void    SvSetSV_nosteal(SV* dsv, SV* ssv)
1519
1520 =for hackers
1521 Found in file sv.h
1522
1523 =item SvSHARE
1524
1525 Arranges for sv to be shared between threads if a suitable module
1526 has been loaded.
1527
1528         void    SvSHARE(SV* sv)
1529
1530 =for hackers
1531 Found in file sv.h
1532
1533 =item SvUNLOCK
1534
1535 Releases a mutual exclusion lock on sv if a suitable module
1536 has been loaded.
1537
1538         void    SvUNLOCK(SV* sv)
1539
1540 =for hackers
1541 Found in file sv.h
1542
1543
1544 =back
1545
1546 =head1 Memory Management
1547
1548 =over 8
1549
1550 =item Copy
1551
1552 The XSUB-writer's interface to the C C<memcpy> function.  The C<src> is the
1553 source, C<dest> is the destination, C<nitems> is the number of items, and C<type> is
1554 the type.  May fail on overlapping copies.  See also C<Move>.
1555
1556         void    Copy(void* src, void* dest, int nitems, type)
1557
1558 =for hackers
1559 Found in file handy.h
1560
1561 =item CopyD
1562
1563 Like C<Copy> but returns dest. Useful for encouraging compilers to tail-call
1564 optimise.
1565
1566         void *  CopyD(void* src, void* dest, int nitems, type)
1567
1568 =for hackers
1569 Found in file handy.h
1570
1571 =item Move
1572
1573 The XSUB-writer's interface to the C C<memmove> function.  The C<src> is the
1574 source, C<dest> is the destination, C<nitems> is the number of items, and C<type> is
1575 the type.  Can do overlapping moves.  See also C<Copy>.
1576
1577         void    Move(void* src, void* dest, int nitems, type)
1578
1579 =for hackers
1580 Found in file handy.h
1581
1582 =item MoveD
1583
1584 Like C<Move> but returns dest. Useful for encouraging compilers to tail-call
1585 optimise.
1586
1587         void *  MoveD(void* src, void* dest, int nitems, type)
1588
1589 =for hackers
1590 Found in file handy.h
1591
1592 =item New
1593
1594 The XSUB-writer's interface to the C C<malloc> function.
1595
1596         void    New(int id, void* ptr, int nitems, type)
1597
1598 =for hackers
1599 Found in file handy.h
1600
1601 =item Newc
1602
1603 The XSUB-writer's interface to the C C<malloc> function, with
1604 cast.
1605
1606         void    Newc(int id, void* ptr, int nitems, type, cast)
1607
1608 =for hackers
1609 Found in file handy.h
1610
1611 =item Newz
1612
1613 The XSUB-writer's interface to the C C<malloc> function.  The allocated
1614 memory is zeroed with C<memzero>.
1615
1616         void    Newz(int id, void* ptr, int nitems, type)
1617
1618 =for hackers
1619 Found in file handy.h
1620
1621 =item Poison
1622
1623 Fill up memory with a pattern (byte 0xAB over and over again) that
1624 hopefully catches attempts to access uninitialized memory.
1625
1626         void    Poison(void* dest, int nitems, type)
1627
1628 =for hackers
1629 Found in file handy.h
1630
1631 =item Renew
1632
1633 The XSUB-writer's interface to the C C<realloc> function.
1634
1635         void    Renew(void* ptr, int nitems, type)
1636
1637 =for hackers
1638 Found in file handy.h
1639
1640 =item Renewc
1641
1642 The XSUB-writer's interface to the C C<realloc> function, with
1643 cast.
1644
1645         void    Renewc(void* ptr, int nitems, type, cast)
1646
1647 =for hackers
1648 Found in file handy.h
1649
1650 =item Safefree
1651
1652 The XSUB-writer's interface to the C C<free> function.
1653
1654         void    Safefree(void* ptr)
1655
1656 =for hackers
1657 Found in file handy.h
1658
1659 =item savepv
1660
1661 Perl's version of C<strdup()>. Returns a pointer to a newly allocated
1662 string which is a duplicate of C<pv>. The size of the string is
1663 determined by C<strlen()>. The memory allocated for the new string can
1664 be freed with the C<Safefree()> function.
1665
1666         char*   savepv(const char* pv)
1667
1668 =for hackers
1669 Found in file util.c
1670
1671 =item savepvn
1672
1673 Perl's version of what C<strndup()> would be if it existed. Returns a
1674 pointer to a newly allocated string which is a duplicate of the first
1675 C<len> bytes from C<pv>. The memory allocated for the new string can be
1676 freed with the C<Safefree()> function.
1677
1678         char*   savepvn(const char* pv, I32 len)
1679
1680 =for hackers
1681 Found in file util.c
1682
1683 =item savesharedpv
1684
1685 A version of C<savepv()> which allocates the duplicate string in memory
1686 which is shared between threads.
1687
1688         char*   savesharedpv(const char* pv)
1689
1690 =for hackers
1691 Found in file util.c
1692
1693 =item savesvpv
1694
1695 A version of C<savepv()>/C<savepvn()> which gets the string to duplicate from
1696 the passed in SV using C<SvPV()>
1697
1698         char*   savesvpv(SV* sv)
1699
1700 =for hackers
1701 Found in file util.c
1702
1703 =item StructCopy
1704
1705 This is an architecture-independent macro to copy one structure to another.
1706
1707         void    StructCopy(type src, type dest, type)
1708
1709 =for hackers
1710 Found in file handy.h
1711
1712 =item Zero
1713
1714 The XSUB-writer's interface to the C C<memzero> function.  The C<dest> is the
1715 destination, C<nitems> is the number of items, and C<type> is the type.
1716
1717         void    Zero(void* dest, int nitems, type)
1718
1719 =for hackers
1720 Found in file handy.h
1721
1722 =item ZeroD
1723
1724 Like C<Zero> but returns dest. Useful for encouraging compilers to tail-call
1725 optimise.
1726
1727         void *  ZeroD(void* dest, int nitems, type)
1728
1729 =for hackers
1730 Found in file handy.h
1731
1732
1733 =back
1734
1735 =head1 Miscellaneous Functions
1736
1737 =over 8
1738
1739 =item fbm_compile
1740
1741 Analyses the string in order to make fast searches on it using fbm_instr()
1742 -- the Boyer-Moore algorithm.
1743
1744         void    fbm_compile(SV* sv, U32 flags)
1745
1746 =for hackers
1747 Found in file util.c
1748
1749 =item fbm_instr
1750
1751 Returns the location of the SV in the string delimited by C<str> and
1752 C<strend>.  It returns C<Nullch> if the string can't be found.  The C<sv>
1753 does not have to be fbm_compiled, but the search will not be as fast
1754 then.
1755
1756         char*   fbm_instr(unsigned char* big, unsigned char* bigend, SV* littlesv, U32 flags)
1757
1758 =for hackers
1759 Found in file util.c
1760
1761 =item form
1762
1763 Takes a sprintf-style format pattern and conventional
1764 (non-SV) arguments and returns the formatted string.
1765
1766     (char *) Perl_form(pTHX_ const char* pat, ...)
1767
1768 can be used any place a string (char *) is required:
1769
1770     char * s = Perl_form("%d.%d",major,minor);
1771
1772 Uses a single private buffer so if you want to format several strings you
1773 must explicitly copy the earlier strings away (and free the copies when you
1774 are done).
1775
1776         char*   form(const char* pat, ...)
1777
1778 =for hackers
1779 Found in file util.c
1780
1781 =item getcwd_sv
1782
1783 Fill the sv with current working directory
1784
1785         int     getcwd_sv(SV* sv)
1786
1787 =for hackers
1788 Found in file util.c
1789
1790 =item strEQ
1791
1792 Test two strings to see if they are equal.  Returns true or false.
1793
1794         bool    strEQ(char* s1, char* s2)
1795
1796 =for hackers
1797 Found in file handy.h
1798
1799 =item strGE
1800
1801 Test two strings to see if the first, C<s1>, is greater than or equal to
1802 the second, C<s2>.  Returns true or false.
1803
1804         bool    strGE(char* s1, char* s2)
1805
1806 =for hackers
1807 Found in file handy.h
1808
1809 =item strGT
1810
1811 Test two strings to see if the first, C<s1>, is greater than the second,
1812 C<s2>.  Returns true or false.
1813
1814         bool    strGT(char* s1, char* s2)
1815
1816 =for hackers
1817 Found in file handy.h
1818
1819 =item strLE
1820
1821 Test two strings to see if the first, C<s1>, is less than or equal to the
1822 second, C<s2>.  Returns true or false.
1823
1824         bool    strLE(char* s1, char* s2)
1825
1826 =for hackers
1827 Found in file handy.h
1828
1829 =item strLT
1830
1831 Test two strings to see if the first, C<s1>, is less than the second,
1832 C<s2>.  Returns true or false.
1833
1834         bool    strLT(char* s1, char* s2)
1835
1836 =for hackers
1837 Found in file handy.h
1838
1839 =item strNE
1840
1841 Test two strings to see if they are different.  Returns true or
1842 false.
1843
1844         bool    strNE(char* s1, char* s2)
1845
1846 =for hackers
1847 Found in file handy.h
1848
1849 =item strnEQ
1850
1851 Test two strings to see if they are equal.  The C<len> parameter indicates
1852 the number of bytes to compare.  Returns true or false. (A wrapper for
1853 C<strncmp>).
1854
1855         bool    strnEQ(char* s1, char* s2, STRLEN len)
1856
1857 =for hackers
1858 Found in file handy.h
1859
1860 =item strnNE
1861
1862 Test two strings to see if they are different.  The C<len> parameter
1863 indicates the number of bytes to compare.  Returns true or false. (A
1864 wrapper for C<strncmp>).
1865
1866         bool    strnNE(char* s1, char* s2, STRLEN len)
1867
1868 =for hackers
1869 Found in file handy.h
1870
1871 =item sv_nolocking
1872
1873 Dummy routine which "locks" an SV when there is no locking module present.
1874 Exists to avoid test for a NULL function pointer and because it could potentially warn under
1875 some level of strict-ness.
1876
1877         void    sv_nolocking(SV *)
1878
1879 =for hackers
1880 Found in file util.c
1881
1882 =item sv_nosharing
1883
1884 Dummy routine which "shares" an SV when there is no sharing module present.
1885 Exists to avoid test for a NULL function pointer and because it could potentially warn under
1886 some level of strict-ness.
1887
1888         void    sv_nosharing(SV *)
1889
1890 =for hackers
1891 Found in file util.c
1892
1893 =item sv_nounlocking
1894
1895 Dummy routine which "unlocks" an SV when there is no locking module present.
1896 Exists to avoid test for a NULL function pointer and because it could potentially warn under
1897 some level of strict-ness.
1898
1899         void    sv_nounlocking(SV *)
1900
1901 =for hackers
1902 Found in file util.c
1903
1904
1905 =back
1906
1907 =head1 Numeric functions
1908
1909 =over 8
1910
1911 =item grok_bin
1912
1913 converts a string representing a binary number to numeric form.
1914
1915 On entry I<start> and I<*len> give the string to scan, I<*flags> gives
1916 conversion flags, and I<result> should be NULL or a pointer to an NV.
1917 The scan stops at the end of the string, or the first invalid character.
1918 Unless C<PERL_SCAN_SILENT_ILLDIGIT> is set in I<*flags>, encountering an
1919 invalid character will also trigger a warning.
1920 On return I<*len> is set to the length of the scanned string,
1921 and I<*flags> gives output flags.
1922
1923 If the value is <= C<UV_MAX> it is returned as a UV, the output flags are clear,
1924 and nothing is written to I<*result>. If the value is > UV_MAX C<grok_bin>
1925 returns UV_MAX, sets C<PERL_SCAN_GREATER_THAN_UV_MAX> in the output flags,
1926 and writes the value to I<*result> (or the value is discarded if I<result>
1927 is NULL).
1928
1929 The binary number may optionally be prefixed with "0b" or "b" unless
1930 C<PERL_SCAN_DISALLOW_PREFIX> is set in I<*flags> on entry. If
1931 C<PERL_SCAN_ALLOW_UNDERSCORES> is set in I<*flags> then the binary
1932 number may use '_' characters to separate digits.
1933
1934         UV      grok_bin(char* start, STRLEN* len, I32* flags, NV *result)
1935
1936 =for hackers
1937 Found in file numeric.c
1938
1939 =item grok_hex
1940
1941 converts a string representing a hex number to numeric form.
1942
1943 On entry I<start> and I<*len> give the string to scan, I<*flags> gives
1944 conversion flags, and I<result> should be NULL or a pointer to an NV.
1945 The scan stops at the end of the string, or the first invalid character.
1946 Unless C<PERL_SCAN_SILENT_ILLDIGIT> is set in I<*flags>, encountering an
1947 invalid character will also trigger a warning.
1948 On return I<*len> is set to the length of the scanned string,
1949 and I<*flags> gives output flags.
1950
1951 If the value is <= UV_MAX it is returned as a UV, the output flags are clear,
1952 and nothing is written to I<*result>. If the value is > UV_MAX C<grok_hex>
1953 returns UV_MAX, sets C<PERL_SCAN_GREATER_THAN_UV_MAX> in the output flags,
1954 and writes the value to I<*result> (or the value is discarded if I<result>
1955 is NULL).
1956
1957 The hex number may optionally be prefixed with "0x" or "x" unless
1958 C<PERL_SCAN_DISALLOW_PREFIX> is set in I<*flags> on entry. If
1959 C<PERL_SCAN_ALLOW_UNDERSCORES> is set in I<*flags> then the hex
1960 number may use '_' characters to separate digits.
1961
1962         UV      grok_hex(char* start, STRLEN* len, I32* flags, NV *result)
1963
1964 =for hackers
1965 Found in file numeric.c
1966
1967 =item grok_number
1968
1969 Recognise (or not) a number.  The type of the number is returned
1970 (0 if unrecognised), otherwise it is a bit-ORed combination of
1971 IS_NUMBER_IN_UV, IS_NUMBER_GREATER_THAN_UV_MAX, IS_NUMBER_NOT_INT,
1972 IS_NUMBER_NEG, IS_NUMBER_INFINITY, IS_NUMBER_NAN (defined in perl.h).
1973
1974 If the value of the number can fit an in UV, it is returned in the *valuep
1975 IS_NUMBER_IN_UV will be set to indicate that *valuep is valid, IS_NUMBER_IN_UV
1976 will never be set unless *valuep is valid, but *valuep may have been assigned
1977 to during processing even though IS_NUMBER_IN_UV is not set on return.
1978 If valuep is NULL, IS_NUMBER_IN_UV will be set for the same cases as when
1979 valuep is non-NULL, but no actual assignment (or SEGV) will occur.
1980
1981 IS_NUMBER_NOT_INT will be set with IS_NUMBER_IN_UV if trailing decimals were
1982 seen (in which case *valuep gives the true value truncated to an integer), and
1983 IS_NUMBER_NEG if the number is negative (in which case *valuep holds the
1984 absolute value).  IS_NUMBER_IN_UV is not set if e notation was used or the
1985 number is larger than a UV.
1986
1987         int     grok_number(const char *pv, STRLEN len, UV *valuep)
1988
1989 =for hackers
1990 Found in file numeric.c
1991
1992 =item grok_numeric_radix
1993
1994 Scan and skip for a numeric decimal separator (radix).
1995
1996         bool    grok_numeric_radix(const char **sp, const char *send)
1997
1998 =for hackers
1999 Found in file numeric.c
2000
2001 =item grok_oct
2002
2003 converts a string representing an octal number to numeric form.
2004
2005 On entry I<start> and I<*len> give the string to scan, I<*flags> gives
2006 conversion flags, and I<result> should be NULL or a pointer to an NV.
2007 The scan stops at the end of the string, or the first invalid character.
2008 Unless C<PERL_SCAN_SILENT_ILLDIGIT> is set in I<*flags>, encountering an
2009 invalid character will also trigger a warning.
2010 On return I<*len> is set to the length of the scanned string,
2011 and I<*flags> gives output flags.
2012
2013 If the value is <= UV_MAX it is returned as a UV, the output flags are clear,
2014 and nothing is written to I<*result>. If the value is > UV_MAX C<grok_oct>
2015 returns UV_MAX, sets C<PERL_SCAN_GREATER_THAN_UV_MAX> in the output flags,
2016 and writes the value to I<*result> (or the value is discarded if I<result>
2017 is NULL).
2018
2019 If C<PERL_SCAN_ALLOW_UNDERSCORES> is set in I<*flags> then the octal
2020 number may use '_' characters to separate digits.
2021
2022         UV      grok_oct(char* start, STRLEN* len, I32* flags, NV *result)
2023
2024 =for hackers
2025 Found in file numeric.c
2026
2027 =item scan_bin
2028
2029 For backwards compatibility. Use C<grok_bin> instead.
2030
2031         NV      scan_bin(char* start, STRLEN len, STRLEN* retlen)
2032
2033 =for hackers
2034 Found in file numeric.c
2035
2036 =item scan_hex
2037
2038 For backwards compatibility. Use C<grok_hex> instead.
2039
2040         NV      scan_hex(char* start, STRLEN len, STRLEN* retlen)
2041
2042 =for hackers
2043 Found in file numeric.c
2044
2045 =item scan_oct
2046
2047 For backwards compatibility. Use C<grok_oct> instead.
2048
2049         NV      scan_oct(char* start, STRLEN len, STRLEN* retlen)
2050
2051 =for hackers
2052 Found in file numeric.c
2053
2054
2055 =back
2056
2057 =head1 Optree Manipulation Functions
2058
2059 =over 8
2060
2061 =item cv_const_sv
2062
2063 If C<cv> is a constant sub eligible for inlining. returns the constant
2064 value returned by the sub.  Otherwise, returns NULL.
2065
2066 Constant subs can be created with C<newCONSTSUB> or as described in
2067 L<perlsub/"Constant Functions">.
2068
2069         SV*     cv_const_sv(CV* cv)
2070
2071 =for hackers
2072 Found in file op.c
2073
2074 =item newCONSTSUB
2075
2076 Creates a constant sub equivalent to Perl C<sub FOO () { 123 }> which is
2077 eligible for inlining at compile-time.
2078
2079         CV*     newCONSTSUB(HV* stash, char* name, SV* sv)
2080
2081 =for hackers
2082 Found in file op.c
2083
2084 =item newXS
2085
2086 Used by C<xsubpp> to hook up XSUBs as Perl subs.
2087
2088 =for hackers
2089 Found in file op.c
2090
2091
2092 =back
2093
2094 =head1 Pad Data Structures
2095
2096 =over 8
2097
2098 =item pad_sv
2099
2100 Get the value at offset po in the current pad.
2101 Use macro PAD_SV instead of calling this function directly.
2102
2103         SV*     pad_sv(PADOFFSET po)
2104
2105 =for hackers
2106 Found in file pad.c
2107
2108
2109 =back
2110
2111 =head1 Stack Manipulation Macros
2112
2113 =over 8
2114
2115 =item dMARK
2116
2117 Declare a stack marker variable, C<mark>, for the XSUB.  See C<MARK> and
2118 C<dORIGMARK>.
2119
2120                 dMARK;
2121
2122 =for hackers
2123 Found in file pp.h
2124
2125 =item dORIGMARK
2126
2127 Saves the original stack mark for the XSUB.  See C<ORIGMARK>.
2128
2129                 dORIGMARK;
2130
2131 =for hackers
2132 Found in file pp.h
2133
2134 =item dSP
2135
2136 Declares a local copy of perl's stack pointer for the XSUB, available via
2137 the C<SP> macro.  See C<SP>.
2138
2139                 dSP;
2140
2141 =for hackers
2142 Found in file pp.h
2143
2144 =item EXTEND
2145
2146 Used to extend the argument stack for an XSUB's return values. Once
2147 used, guarantees that there is room for at least C<nitems> to be pushed
2148 onto the stack.
2149
2150         void    EXTEND(SP, int nitems)
2151
2152 =for hackers
2153 Found in file pp.h
2154
2155 =item MARK
2156
2157 Stack marker variable for the XSUB.  See C<dMARK>.
2158
2159 =for hackers
2160 Found in file pp.h
2161
2162 =item mPUSHi
2163
2164 Push an integer onto the stack.  The stack must have room for this element.
2165 Handles 'set' magic.  Does not use C<TARG>.  See also C<PUSHi>, C<mXPUSHi>
2166 and C<XPUSHi>.
2167
2168         void    mPUSHi(IV iv)
2169
2170 =for hackers
2171 Found in file pp.h
2172
2173 =item mPUSHn
2174
2175 Push a double onto the stack.  The stack must have room for this element.
2176 Handles 'set' magic.  Does not use C<TARG>.  See also C<PUSHn>, C<mXPUSHn>
2177 and C<XPUSHn>.
2178
2179         void    mPUSHn(NV nv)
2180
2181 =for hackers
2182 Found in file pp.h
2183
2184 =item mPUSHp
2185
2186 Push a string onto the stack.  The stack must have room for this element.
2187 The C<len> indicates the length of the string.  Handles 'set' magic.  Does
2188 not use C<TARG>.  See also C<PUSHp>, C<mXPUSHp> and C<XPUSHp>.
2189
2190         void    mPUSHp(char* str, STRLEN len)
2191
2192 =for hackers
2193 Found in file pp.h
2194
2195 =item mPUSHu
2196
2197 Push an unsigned integer onto the stack.  The stack must have room for this
2198 element.  Handles 'set' magic.  Does not use C<TARG>.  See also C<PUSHu>,
2199 C<mXPUSHu> and C<XPUSHu>.
2200
2201         void    mPUSHu(UV uv)
2202
2203 =for hackers
2204 Found in file pp.h
2205
2206 =item mXPUSHi
2207
2208 Push an integer onto the stack, extending the stack if necessary.  Handles
2209 'set' magic.  Does not use C<TARG>.  See also C<XPUSHi>, C<mPUSHi> and
2210 C<PUSHi>.
2211
2212         void    mXPUSHi(IV iv)
2213
2214 =for hackers
2215 Found in file pp.h
2216
2217 =item mXPUSHn
2218
2219 Push a double onto the stack, extending the stack if necessary.  Handles
2220 'set' magic.  Does not use C<TARG>.  See also C<XPUSHn>, C<mPUSHn> and
2221 C<PUSHn>.
2222
2223         void    mXPUSHn(NV nv)
2224
2225 =for hackers
2226 Found in file pp.h
2227
2228 =item mXPUSHp
2229
2230 Push a string onto the stack, extending the stack if necessary.  The C<len>
2231 indicates the length of the string.  Handles 'set' magic.  Does not use
2232 C<TARG>.  See also C<XPUSHp>, C<mPUSHp> and C<PUSHp>.
2233
2234         void    mXPUSHp(char* str, STRLEN len)
2235
2236 =for hackers
2237 Found in file pp.h
2238
2239 =item mXPUSHu
2240
2241 Push an unsigned integer onto the stack, extending the stack if necessary.
2242 Handles 'set' magic.  Does not use C<TARG>.  See also C<XPUSHu>, C<mPUSHu>
2243 and C<PUSHu>.
2244
2245         void    mXPUSHu(UV uv)
2246
2247 =for hackers
2248 Found in file pp.h
2249
2250 =item ORIGMARK
2251
2252 The original stack mark for the XSUB.  See C<dORIGMARK>.
2253
2254 =for hackers
2255 Found in file pp.h
2256
2257 =item POPi
2258
2259 Pops an integer off the stack.
2260
2261         IV      POPi
2262
2263 =for hackers
2264 Found in file pp.h
2265
2266 =item POPl
2267
2268 Pops a long off the stack.
2269
2270         long    POPl
2271
2272 =for hackers
2273 Found in file pp.h
2274
2275 =item POPn
2276
2277 Pops a double off the stack.
2278
2279         NV      POPn
2280
2281 =for hackers
2282 Found in file pp.h
2283
2284 =item POPp
2285
2286 Pops a string off the stack. Deprecated. New code should provide
2287 a STRLEN n_a and use POPpx.
2288
2289         char*   POPp
2290
2291 =for hackers
2292 Found in file pp.h
2293
2294 =item POPpbytex
2295
2296 Pops a string off the stack which must consist of bytes i.e. characters < 256.
2297 Requires a variable STRLEN n_a in scope.
2298
2299         char*   POPpbytex
2300
2301 =for hackers
2302 Found in file pp.h
2303
2304 =item POPpx
2305
2306 Pops a string off the stack.
2307 Requires a variable STRLEN n_a in scope.
2308
2309         char*   POPpx
2310
2311 =for hackers
2312 Found in file pp.h
2313
2314 =item POPs
2315
2316 Pops an SV off the stack.
2317
2318         SV*     POPs
2319
2320 =for hackers
2321 Found in file pp.h
2322
2323 =item PUSHi
2324
2325 Push an integer onto the stack.  The stack must have room for this element.
2326 Handles 'set' magic.  Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be
2327 called to declare it.  Do not call multiple C<TARG>-oriented macros to 
2328 return lists from XSUB's - see C<mPUSHi> instead.  See also C<XPUSHi> and
2329 C<mXPUSHi>.
2330
2331         void    PUSHi(IV iv)
2332
2333 =for hackers
2334 Found in file pp.h
2335
2336 =item PUSHMARK
2337
2338 Opening bracket for arguments on a callback.  See C<PUTBACK> and
2339 L<perlcall>.
2340
2341         void    PUSHMARK(SP)
2342
2343 =for hackers
2344 Found in file pp.h
2345
2346 =item PUSHmortal
2347
2348 Push a new mortal SV onto the stack.  The stack must have room for this
2349 element.  Does not handle 'set' magic.  Does not use C<TARG>.  See also
2350 C<PUSHs>, C<XPUSHmortal> and C<XPUSHs>.
2351
2352         void    PUSHmortal()
2353
2354 =for hackers
2355 Found in file pp.h
2356
2357 =item PUSHn
2358
2359 Push a double onto the stack.  The stack must have room for this element.
2360 Handles 'set' magic.  Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be
2361 called to declare it.  Do not call multiple C<TARG>-oriented macros to
2362 return lists from XSUB's - see C<mPUSHn> instead.  See also C<XPUSHn> and
2363 C<mXPUSHn>.
2364
2365         void    PUSHn(NV nv)
2366
2367 =for hackers
2368 Found in file pp.h
2369
2370 =item PUSHp
2371
2372 Push a string onto the stack.  The stack must have room for this element.
2373 The C<len> indicates the length of the string.  Handles 'set' magic.  Uses
2374 C<TARG>, so C<dTARGET> or C<dXSTARG> should be called to declare it.  Do not
2375 call multiple C<TARG>-oriented macros to return lists from XSUB's - see
2376 C<mPUSHp> instead.  See also C<XPUSHp> and C<mXPUSHp>.
2377
2378         void    PUSHp(char* str, STRLEN len)
2379
2380 =for hackers
2381 Found in file pp.h
2382
2383 =item PUSHs
2384
2385 Push an SV onto the stack.  The stack must have room for this element.
2386 Does not handle 'set' magic.  Does not use C<TARG>.  See also C<PUSHmortal>,
2387 C<XPUSHs> and C<XPUSHmortal>.
2388
2389         void    PUSHs(SV* sv)
2390
2391 =for hackers
2392 Found in file pp.h
2393
2394 =item PUSHu
2395
2396 Push an unsigned integer onto the stack.  The stack must have room for this
2397 element.  Handles 'set' magic.  Uses C<TARG>, so C<dTARGET> or C<dXSTARG>
2398 should be called to declare it.  Do not call multiple C<TARG>-oriented
2399 macros to return lists from XSUB's - see C<mPUSHu> instead.  See also
2400 C<XPUSHu> and C<mXPUSHu>.
2401
2402         void    PUSHu(UV uv)
2403
2404 =for hackers
2405 Found in file pp.h
2406
2407 =item PUTBACK
2408
2409 Closing bracket for XSUB arguments.  This is usually handled by C<xsubpp>.
2410 See C<PUSHMARK> and L<perlcall> for other uses.
2411
2412                 PUTBACK;
2413
2414 =for hackers
2415 Found in file pp.h
2416
2417 =item SP
2418
2419 Stack pointer.  This is usually handled by C<xsubpp>.  See C<dSP> and
2420 C<SPAGAIN>.
2421
2422 =for hackers
2423 Found in file pp.h
2424
2425 =item SPAGAIN
2426
2427 Refetch the stack pointer.  Used after a callback.  See L<perlcall>.
2428
2429                 SPAGAIN;
2430
2431 =for hackers
2432 Found in file pp.h
2433
2434 =item XPUSHi
2435
2436 Push an integer onto the stack, extending the stack if necessary.  Handles
2437 'set' magic.  Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be called to
2438 declare it.  Do not call multiple C<TARG>-oriented macros to return lists
2439 from XSUB's - see C<mXPUSHi> instead.  See also C<PUSHi> and C<mPUSHi>.
2440
2441         void    XPUSHi(IV iv)
2442
2443 =for hackers
2444 Found in file pp.h
2445
2446 =item XPUSHmortal
2447
2448 Push a new mortal SV onto the stack, extending the stack if necessary.  Does
2449 not handle 'set' magic.  Does not use C<TARG>.  See also C<XPUSHs>,
2450 C<PUSHmortal> and C<PUSHs>.
2451
2452         void    XPUSHmortal()
2453
2454 =for hackers
2455 Found in file pp.h
2456
2457 =item XPUSHn
2458
2459 Push a double onto the stack, extending the stack if necessary.  Handles
2460 'set' magic.  Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be called to
2461 declare it.  Do not call multiple C<TARG>-oriented macros to return lists
2462 from XSUB's - see C<mXPUSHn> instead.  See also C<PUSHn> and C<mPUSHn>.
2463
2464         void    XPUSHn(NV nv)
2465
2466 =for hackers
2467 Found in file pp.h
2468
2469 =item XPUSHp
2470
2471 Push a string onto the stack, extending the stack if necessary.  The C<len>
2472 indicates the length of the string.  Handles 'set' magic.  Uses C<TARG>, so
2473 C<dTARGET> or C<dXSTARG> should be called to declare it.  Do not call
2474 multiple C<TARG>-oriented macros to return lists from XSUB's - see
2475 C<mXPUSHp> instead.  See also C<PUSHp> and C<mPUSHp>.
2476
2477         void    XPUSHp(char* str, STRLEN len)
2478
2479 =for hackers
2480 Found in file pp.h
2481
2482 =item XPUSHs
2483
2484 Push an SV onto the stack, extending the stack if necessary.  Does not
2485 handle 'set' magic.  Does not use C<TARG>.  See also C<XPUSHmortal>,
2486 C<PUSHs> and C<PUSHmortal>.
2487
2488         void    XPUSHs(SV* sv)
2489
2490 =for hackers
2491 Found in file pp.h
2492
2493 =item XPUSHu
2494
2495 Push an unsigned integer onto the stack, extending the stack if necessary.
2496 Handles 'set' magic.  Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be
2497 called to declare it.  Do not call multiple C<TARG>-oriented macros to
2498 return lists from XSUB's - see C<mXPUSHu> instead.  See also C<PUSHu> and
2499 C<mPUSHu>.
2500
2501         void    XPUSHu(UV uv)
2502
2503 =for hackers
2504 Found in file pp.h
2505
2506 =item XSRETURN
2507
2508 Return from XSUB, indicating number of items on the stack.  This is usually
2509 handled by C<xsubpp>.
2510
2511         void    XSRETURN(int nitems)
2512
2513 =for hackers
2514 Found in file XSUB.h
2515
2516 =item XSRETURN_EMPTY
2517
2518 Return an empty list from an XSUB immediately.
2519
2520                 XSRETURN_EMPTY;
2521
2522 =for hackers
2523 Found in file XSUB.h
2524
2525 =item XSRETURN_IV
2526
2527 Return an integer from an XSUB immediately.  Uses C<XST_mIV>.
2528
2529         void    XSRETURN_IV(IV iv)
2530
2531 =for hackers
2532 Found in file XSUB.h
2533
2534 =item XSRETURN_NO
2535
2536 Return C<&PL_sv_no> from an XSUB immediately.  Uses C<XST_mNO>.
2537
2538                 XSRETURN_NO;
2539
2540 =for hackers
2541 Found in file XSUB.h
2542
2543 =item XSRETURN_NV
2544
2545 Return a double from an XSUB immediately.  Uses C<XST_mNV>.
2546
2547         void    XSRETURN_NV(NV nv)
2548
2549 =for hackers
2550 Found in file XSUB.h
2551
2552 =item XSRETURN_PV
2553
2554 Return a copy of a string from an XSUB immediately.  Uses C<XST_mPV>.
2555
2556         void    XSRETURN_PV(char* str)
2557
2558 =for hackers
2559 Found in file XSUB.h
2560
2561 =item XSRETURN_UNDEF
2562
2563 Return C<&PL_sv_undef> from an XSUB immediately.  Uses C<XST_mUNDEF>.
2564
2565                 XSRETURN_UNDEF;
2566
2567 =for hackers
2568 Found in file XSUB.h
2569
2570 =item XSRETURN_UV
2571
2572 Return an integer from an XSUB immediately.  Uses C<XST_mUV>.
2573
2574         void    XSRETURN_UV(IV uv)
2575
2576 =for hackers
2577 Found in file XSUB.h
2578
2579 =item XSRETURN_YES
2580
2581 Return C<&PL_sv_yes> from an XSUB immediately.  Uses C<XST_mYES>.
2582
2583                 XSRETURN_YES;
2584
2585 =for hackers
2586 Found in file XSUB.h
2587
2588 =item XST_mIV
2589
2590 Place an integer into the specified position C<pos> on the stack.  The
2591 value is stored in a new mortal SV.
2592
2593         void    XST_mIV(int pos, IV iv)
2594
2595 =for hackers
2596 Found in file XSUB.h
2597
2598 =item XST_mNO
2599
2600 Place C<&PL_sv_no> into the specified position C<pos> on the
2601 stack.
2602
2603         void    XST_mNO(int pos)
2604
2605 =for hackers
2606 Found in file XSUB.h
2607
2608 =item XST_mNV
2609
2610 Place a double into the specified position C<pos> on the stack.  The value
2611 is stored in a new mortal SV.
2612
2613         void    XST_mNV(int pos, NV nv)
2614
2615 =for hackers
2616 Found in file XSUB.h
2617
2618 =item XST_mPV
2619
2620 Place a copy of a string into the specified position C<pos> on the stack. 
2621 The value is stored in a new mortal SV.
2622
2623         void    XST_mPV(int pos, char* str)
2624
2625 =for hackers
2626 Found in file XSUB.h
2627
2628 =item XST_mUNDEF
2629
2630 Place C<&PL_sv_undef> into the specified position C<pos> on the
2631 stack.
2632
2633         void    XST_mUNDEF(int pos)
2634
2635 =for hackers
2636 Found in file XSUB.h
2637
2638 =item XST_mYES
2639
2640 Place C<&PL_sv_yes> into the specified position C<pos> on the
2641 stack.
2642
2643         void    XST_mYES(int pos)
2644
2645 =for hackers
2646 Found in file XSUB.h
2647
2648
2649 =back
2650
2651 =head1 SV Flags
2652
2653 =over 8
2654
2655 =item svtype
2656
2657 An enum of flags for Perl types.  These are found in the file B<sv.h>
2658 in the C<svtype> enum.  Test these flags with the C<SvTYPE> macro.
2659
2660 =for hackers
2661 Found in file sv.h
2662
2663 =item SVt_IV
2664
2665 Integer type flag for scalars.  See C<svtype>.
2666
2667 =for hackers
2668 Found in file sv.h
2669
2670 =item SVt_NV
2671
2672 Double type flag for scalars.  See C<svtype>.
2673
2674 =for hackers
2675 Found in file sv.h
2676
2677 =item SVt_PV
2678
2679 Pointer type flag for scalars.  See C<svtype>.
2680
2681 =for hackers
2682 Found in file sv.h
2683
2684 =item SVt_PVAV
2685
2686 Type flag for arrays.  See C<svtype>.
2687
2688 =for hackers
2689 Found in file sv.h
2690
2691 =item SVt_PVCV
2692
2693 Type flag for code refs.  See C<svtype>.
2694
2695 =for hackers
2696 Found in file sv.h
2697
2698 =item SVt_PVHV
2699
2700 Type flag for hashes.  See C<svtype>.
2701
2702 =for hackers
2703 Found in file sv.h
2704
2705 =item SVt_PVMG
2706
2707 Type flag for blessed scalars.  See C<svtype>.
2708
2709 =for hackers
2710 Found in file sv.h
2711
2712
2713 =back
2714
2715 =head1 SV Manipulation Functions
2716
2717 =over 8
2718
2719 =item get_sv
2720
2721 Returns the SV of the specified Perl scalar.  If C<create> is set and the
2722 Perl variable does not exist then it will be created.  If C<create> is not
2723 set and the variable does not exist then NULL is returned.
2724
2725 NOTE: the perl_ form of this function is deprecated.
2726
2727         SV*     get_sv(const char* name, I32 create)
2728
2729 =for hackers
2730 Found in file perl.c
2731
2732 =item looks_like_number
2733
2734 Test if the content of an SV looks like a number (or is a number).
2735 C<Inf> and C<Infinity> are treated as numbers (so will not issue a
2736 non-numeric warning), even if your atof() doesn't grok them.
2737
2738         I32     looks_like_number(SV* sv)
2739
2740 =for hackers
2741 Found in file sv.c
2742
2743 =item newRV_inc
2744
2745 Creates an RV wrapper for an SV.  The reference count for the original SV is
2746 incremented.
2747
2748         SV*     newRV_inc(SV* sv)
2749
2750 =for hackers
2751 Found in file sv.h
2752
2753 =item newRV_noinc
2754
2755 Creates an RV wrapper for an SV.  The reference count for the original
2756 SV is B<not> incremented.
2757
2758         SV*     newRV_noinc(SV *sv)
2759
2760 =for hackers
2761 Found in file sv.c
2762
2763 =item NEWSV
2764
2765 Creates a new SV.  A non-zero C<len> parameter indicates the number of
2766 bytes of preallocated string space the SV should have.  An extra byte for a
2767 tailing NUL is also reserved.  (SvPOK is not set for the SV even if string
2768 space is allocated.)  The reference count for the new SV is set to 1.
2769 C<id> is an integer id between 0 and 1299 (used to identify leaks).
2770
2771         SV*     NEWSV(int id, STRLEN len)
2772
2773 =for hackers
2774 Found in file handy.h
2775
2776 =item newSV
2777
2778 Create a new null SV, or if len > 0, create a new empty SVt_PV type SV
2779 with an initial PV allocation of len+1. Normally accessed via the C<NEWSV>
2780 macro.
2781
2782         SV*     newSV(STRLEN len)
2783
2784 =for hackers
2785 Found in file sv.c
2786
2787 =item newSViv
2788
2789 Creates a new SV and copies an integer into it.  The reference count for the
2790 SV is set to 1.
2791
2792         SV*     newSViv(IV i)
2793
2794 =for hackers
2795 Found in file sv.c
2796
2797 =item newSVnv
2798
2799 Creates a new SV and copies a floating point value into it.
2800 The reference count for the SV is set to 1.
2801
2802         SV*     newSVnv(NV n)
2803
2804 =for hackers
2805 Found in file sv.c
2806
2807 =item newSVpv
2808
2809 Creates a new SV and copies a string into it.  The reference count for the
2810 SV is set to 1.  If C<len> is zero, Perl will compute the length using
2811 strlen().  For efficiency, consider using C<newSVpvn> instead.
2812
2813         SV*     newSVpv(const char* s, STRLEN len)
2814
2815 =for hackers
2816 Found in file sv.c
2817
2818 =item newSVpvf
2819
2820 Creates a new SV and initializes it with the string formatted like
2821 C<sprintf>.
2822
2823         SV*     newSVpvf(const char* pat, ...)
2824
2825 =for hackers
2826 Found in file sv.c
2827
2828 =item newSVpvn
2829
2830 Creates a new SV and copies a string into it.  The reference count for the
2831 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
2832 string.  You are responsible for ensuring that the source string is at least
2833 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
2834
2835         SV*     newSVpvn(const char* s, STRLEN len)
2836
2837 =for hackers
2838 Found in file sv.c
2839
2840 =item newSVpvn_share
2841
2842 Creates a new SV with its SvPVX pointing to a shared string in the string
2843 table. If the string does not already exist in the table, it is created
2844 first.  Turns on READONLY and FAKE.  The string's hash is stored in the UV
2845 slot of the SV; if the C<hash> parameter is non-zero, that value is used;
2846 otherwise the hash is computed.  The idea here is that as the string table
2847 is used for shared hash keys these strings will have SvPVX == HeKEY and
2848 hash lookup will avoid string compare.
2849
2850         SV*     newSVpvn_share(const char* s, I32 len, U32 hash)
2851
2852 =for hackers
2853 Found in file sv.c
2854
2855 =item newSVrv
2856
2857 Creates a new SV for the RV, C<rv>, to point to.  If C<rv> is not an RV then
2858 it will be upgraded to one.  If C<classname> is non-null then the new SV will
2859 be blessed in the specified package.  The new SV is returned and its
2860 reference count is 1.
2861
2862         SV*     newSVrv(SV* rv, const char* classname)
2863
2864 =for hackers
2865 Found in file sv.c
2866
2867 =item newSVsv
2868
2869 Creates a new SV which is an exact duplicate of the original SV.
2870 (Uses C<sv_setsv>).
2871
2872         SV*     newSVsv(SV* old)
2873
2874 =for hackers
2875 Found in file sv.c
2876
2877 =item newSVuv
2878
2879 Creates a new SV and copies an unsigned integer into it.
2880 The reference count for the SV is set to 1.
2881
2882         SV*     newSVuv(UV u)
2883
2884 =for hackers
2885 Found in file sv.c
2886
2887 =item SvCUR
2888
2889 Returns the length of the string which is in the SV.  See C<SvLEN>.
2890
2891         STRLEN  SvCUR(SV* sv)
2892
2893 =for hackers
2894 Found in file sv.h
2895
2896 =item SvCUR_set
2897
2898 Set the length of the string which is in the SV.  See C<SvCUR>.
2899
2900         void    SvCUR_set(SV* sv, STRLEN len)
2901
2902 =for hackers
2903 Found in file sv.h
2904
2905 =item SvEND
2906
2907 Returns a pointer to the last character in the string which is in the SV.
2908 See C<SvCUR>.  Access the character as *(SvEND(sv)).
2909
2910         char*   SvEND(SV* sv)
2911
2912 =for hackers
2913 Found in file sv.h
2914
2915 =item SvGROW
2916
2917 Expands the character buffer in the SV so that it has room for the
2918 indicated number of bytes (remember to reserve space for an extra trailing
2919 NUL character).  Calls C<sv_grow> to perform the expansion if necessary.
2920 Returns a pointer to the character buffer.
2921
2922         char *  SvGROW(SV* sv, STRLEN len)
2923
2924 =for hackers
2925 Found in file sv.h
2926
2927 =item SvIOK
2928
2929 Returns a boolean indicating whether the SV contains an integer.
2930
2931         bool    SvIOK(SV* sv)
2932
2933 =for hackers
2934 Found in file sv.h
2935
2936 =item SvIOKp
2937
2938 Returns a boolean indicating whether the SV contains an integer.  Checks
2939 the B<private> setting.  Use C<SvIOK>.
2940
2941         bool    SvIOKp(SV* sv)
2942
2943 =for hackers
2944 Found in file sv.h
2945
2946 =item SvIOK_notUV
2947
2948 Returns a boolean indicating whether the SV contains a signed integer.
2949
2950         bool    SvIOK_notUV(SV* sv)
2951
2952 =for hackers
2953 Found in file sv.h
2954
2955 =item SvIOK_off
2956
2957 Unsets the IV status of an SV.
2958
2959         void    SvIOK_off(SV* sv)
2960
2961 =for hackers
2962 Found in file sv.h
2963
2964 =item SvIOK_on
2965
2966 Tells an SV that it is an integer.
2967
2968         void    SvIOK_on(SV* sv)
2969
2970 =for hackers
2971 Found in file sv.h
2972
2973 =item SvIOK_only
2974
2975 Tells an SV that it is an integer and disables all other OK bits.
2976
2977         void    SvIOK_only(SV* sv)
2978
2979 =for hackers
2980 Found in file sv.h
2981
2982 =item SvIOK_only_UV
2983
2984 Tells and SV that it is an unsigned integer and disables all other OK bits.
2985
2986         void    SvIOK_only_UV(SV* sv)
2987
2988 =for hackers
2989 Found in file sv.h
2990
2991 =item SvIOK_UV
2992
2993 Returns a boolean indicating whether the SV contains an unsigned integer.
2994
2995         bool    SvIOK_UV(SV* sv)
2996
2997 =for hackers
2998 Found in file sv.h
2999
3000 =item SvIsCOW
3001
3002 Returns a boolean indicating whether the SV is Copy-On-Write. (either shared
3003 hash key scalars, or full Copy On Write scalars if 5.9.0 is configured for
3004 COW)
3005
3006         bool    SvIsCOW(SV* sv)
3007
3008 =for hackers
3009 Found in file sv.h
3010
3011 =item SvIsCOW_shared_hash
3012
3013 Returns a boolean indicating whether the SV is Copy-On-Write shared hash key
3014 scalar.
3015
3016         bool    SvIsCOW_shared_hash(SV* sv)
3017
3018 =for hackers
3019 Found in file sv.h
3020
3021 =item SvIV
3022
3023 Coerces the given SV to an integer and returns it. See  C<SvIVx> for a
3024 version which guarantees to evaluate sv only once.
3025
3026         IV      SvIV(SV* sv)
3027
3028 =for hackers
3029 Found in file sv.h
3030
3031 =item SvIVX
3032
3033 Returns the raw value in the SV's IV slot, without checks or conversions.
3034 Only use when you are sure SvIOK is true. See also C<SvIV()>.
3035
3036         IV      SvIVX(SV* sv)
3037
3038 =for hackers
3039 Found in file sv.h
3040
3041 =item SvIVx
3042
3043 Coerces the given SV to an integer and returns it. Guarantees to evaluate
3044 sv only once. Use the more efficient C<SvIV> otherwise.
3045
3046         IV      SvIVx(SV* sv)
3047
3048 =for hackers
3049 Found in file sv.h
3050
3051 =item SvLEN
3052
3053 Returns the size of the string buffer in the SV, not including any part
3054 attributable to C<SvOOK>.  See C<SvCUR>.
3055
3056         STRLEN  SvLEN(SV* sv)
3057
3058 =for hackers
3059 Found in file sv.h
3060
3061 =item SvNIOK
3062
3063 Returns a boolean indicating whether the SV contains a number, integer or
3064 double.
3065
3066         bool    SvNIOK(SV* sv)
3067
3068 =for hackers
3069 Found in file sv.h
3070
3071 =item SvNIOKp
3072
3073 Returns a boolean indicating whether the SV contains a number, integer or
3074 double.  Checks the B<private> setting.  Use C<SvNIOK>.
3075
3076         bool    SvNIOKp(SV* sv)
3077
3078 =for hackers
3079 Found in file sv.h
3080
3081 =item SvNIOK_off
3082
3083 Unsets the NV/IV status of an SV.
3084
3085         void    SvNIOK_off(SV* sv)
3086
3087 =for hackers
3088 Found in file sv.h
3089
3090 =item SvNOK
3091
3092 Returns a boolean indicating whether the SV contains a double.
3093
3094         bool    SvNOK(SV* sv)
3095
3096 =for hackers
3097 Found in file sv.h
3098
3099 =item SvNOKp
3100
3101 Returns a boolean indicating whether the SV contains a double.  Checks the
3102 B<private> setting.  Use C<SvNOK>.
3103
3104         bool    SvNOKp(SV* sv)
3105
3106 =for hackers
3107 Found in file sv.h
3108
3109 =item SvNOK_off
3110
3111 Unsets the NV status of an SV.
3112
3113         void    SvNOK_off(SV* sv)
3114
3115 =for hackers
3116 Found in file sv.h
3117
3118 =item SvNOK_on
3119
3120 Tells an SV that it is a double.
3121
3122         void    SvNOK_on(SV* sv)
3123
3124 =for hackers
3125 Found in file sv.h
3126
3127 =item SvNOK_only
3128
3129 Tells an SV that it is a double and disables all other OK bits.
3130
3131         void    SvNOK_only(SV* sv)
3132
3133 =for hackers
3134 Found in file sv.h
3135
3136 =item SvNV
3137
3138 Coerce the given SV to a double and return it. See  C<SvNVx> for a version
3139 which guarantees to evaluate sv only once.
3140
3141         NV      SvNV(SV* sv)
3142
3143 =for hackers
3144 Found in file sv.h
3145
3146 =item SvNVX
3147
3148 Returns the raw value in the SV's NV slot, without checks or conversions.
3149 Only use when you are sure SvNOK is true. See also C<SvNV()>.
3150
3151         NV      SvNVX(SV* sv)
3152
3153 =for hackers
3154 Found in file sv.h
3155
3156 =item SvNVx
3157
3158 Coerces the given SV to a double and returns it. Guarantees to evaluate
3159 sv only once. Use the more efficient C<SvNV> otherwise.
3160
3161         NV      SvNVx(SV* sv)
3162
3163 =for hackers
3164 Found in file sv.h
3165
3166 =item SvOK
3167
3168 Returns a boolean indicating whether the value is an SV. It also tells
3169 whether the value is defined or not.
3170
3171         bool    SvOK(SV* sv)
3172
3173 =for hackers
3174 Found in file sv.h
3175
3176 =item SvOOK
3177
3178 Returns a boolean indicating whether the SvIVX is a valid offset value for
3179 the SvPVX.  This hack is used internally to speed up removal of characters
3180 from the beginning of a SvPV.  When SvOOK is true, then the start of the
3181 allocated string buffer is really (SvPVX - SvIVX).
3182
3183         bool    SvOOK(SV* sv)
3184
3185 =for hackers
3186 Found in file sv.h
3187
3188 =item SvPOK
3189
3190 Returns a boolean indicating whether the SV contains a character
3191 string.
3192
3193         bool    SvPOK(SV* sv)
3194
3195 =for hackers
3196 Found in file sv.h
3197
3198 =item SvPOKp
3199
3200 Returns a boolean indicating whether the SV contains a character string.
3201 Checks the B<private> setting.  Use C<SvPOK>.
3202
3203         bool    SvPOKp(SV* sv)
3204
3205 =for hackers
3206 Found in file sv.h
3207
3208 =item SvPOK_off
3209
3210 Unsets the PV status of an SV.
3211
3212         void    SvPOK_off(SV* sv)
3213
3214 =for hackers
3215 Found in file sv.h
3216
3217 =item SvPOK_on
3218
3219 Tells an SV that it is a string.
3220
3221         void    SvPOK_on(SV* sv)
3222
3223 =for hackers
3224 Found in file sv.h
3225
3226 =item SvPOK_only
3227
3228 Tells an SV that it is a string and disables all other OK bits.
3229 Will also turn off the UTF-8 status.
3230
3231         void    SvPOK_only(SV* sv)
3232
3233 =for hackers
3234 Found in file sv.h
3235
3236 =item SvPOK_only_UTF8
3237
3238 Tells an SV that it is a string and disables all other OK bits,
3239 and leaves the UTF-8 status as it was.
3240
3241         void    SvPOK_only_UTF8(SV* sv)
3242
3243 =for hackers
3244 Found in file sv.h
3245
3246 =item SvPV
3247
3248 Returns a pointer to the string in the SV, or a stringified form of
3249 the SV if the SV does not contain a string.  The SV may cache the
3250 stringified version becoming C<SvPOK>.  Handles 'get' magic. See also
3251 C<SvPVx> for a version which guarantees to evaluate sv only once.
3252
3253         char*   SvPV(SV* sv, STRLEN len)
3254
3255 =for hackers
3256 Found in file sv.h
3257
3258 =item SvPVbyte
3259
3260 Like C<SvPV>, but converts sv to byte representation first if necessary.
3261
3262         char*   SvPVbyte(SV* sv, STRLEN len)
3263
3264 =for hackers
3265 Found in file sv.h
3266
3267 =item SvPVbytex
3268
3269 Like C<SvPV>, but converts sv to byte representation first if necessary.
3270 Guarantees to evaluate sv only once; use the more efficient C<SvPVbyte>
3271 otherwise.
3272
3273         char*   SvPVbytex(SV* sv, STRLEN len)
3274
3275 =for hackers
3276 Found in file sv.h
3277
3278 =item SvPVbytex_force
3279
3280 Like C<SvPV_force>, but converts sv to byte representation first if necessary.
3281 Guarantees to evaluate sv only once; use the more efficient C<SvPVbyte_force>
3282 otherwise.
3283
3284         char*   SvPVbytex_force(SV* sv, STRLEN len)
3285
3286 =for hackers
3287 Found in file sv.h
3288
3289 =item SvPVbyte_force
3290
3291 Like C<SvPV_force>, but converts sv to byte representation first if necessary.
3292
3293         char*   SvPVbyte_force(SV* sv, STRLEN len)
3294
3295 =for hackers
3296 Found in file sv.h
3297
3298 =item SvPVbyte_nolen
3299
3300 Like C<SvPV_nolen>, but converts sv to byte representation first if necessary.
3301
3302         char*   SvPVbyte_nolen(SV* sv)
3303
3304 =for hackers
3305 Found in file sv.h
3306
3307 =item SvPVutf8
3308
3309 Like C<SvPV>, but converts sv to utf8 first if necessary.
3310
3311         char*   SvPVutf8(SV* sv, STRLEN len)
3312
3313 =for hackers
3314 Found in file sv.h
3315
3316 =item SvPVutf8x
3317
3318 Like C<SvPV>, but converts sv to utf8 first if necessary.
3319 Guarantees to evaluate sv only once; use the more efficient C<SvPVutf8>
3320 otherwise.
3321
3322         char*   SvPVutf8x(SV* sv, STRLEN len)
3323
3324 =for hackers
3325 Found in file sv.h
3326
3327 =item SvPVutf8x_force
3328
3329 Like C<SvPV_force>, but converts sv to utf8 first if necessary.
3330 Guarantees to evaluate sv only once; use the more efficient C<SvPVutf8_force>
3331 otherwise.
3332
3333         char*   SvPVutf8x_force(SV* sv, STRLEN len)
3334
3335 =for hackers
3336 Found in file sv.h
3337
3338 =item SvPVutf8_force
3339
3340 Like C<SvPV_force>, but converts sv to utf8 first if necessary.
3341
3342         char*   SvPVutf8_force(SV* sv, STRLEN len)
3343
3344 =for hackers
3345 Found in file sv.h
3346
3347 =item SvPVutf8_nolen
3348
3349 Like C<SvPV_nolen>, but converts sv to utf8 first if necessary.
3350
3351         char*   SvPVutf8_nolen(SV* sv)
3352
3353 =for hackers
3354 Found in file sv.h
3355
3356 =item SvPVX
3357
3358 Returns a pointer to the physical string in the SV.  The SV must contain a
3359 string.
3360
3361         char*   SvPVX(SV* sv)
3362
3363 =for hackers
3364 Found in file sv.h
3365
3366 =item SvPVx
3367
3368 A version of C<SvPV> which guarantees to evaluate sv only once.
3369
3370         char*   SvPVx(SV* sv, STRLEN len)
3371
3372 =for hackers
3373 Found in file sv.h
3374
3375 =item SvPV_force
3376
3377 Like C<SvPV> but will force the SV into containing just a string
3378 (C<SvPOK_only>).  You want force if you are going to update the C<SvPVX>
3379 directly.
3380
3381         char*   SvPV_force(SV* sv, STRLEN len)
3382
3383 =for hackers
3384 Found in file sv.h
3385
3386 =item SvPV_force_nomg
3387
3388 Like C<SvPV> but will force the SV into containing just a string
3389 (C<SvPOK_only>).  You want force if you are going to update the C<SvPVX>
3390 directly. Doesn't process magic.
3391
3392         char*   SvPV_force_nomg(SV* sv, STRLEN len)
3393
3394 =for hackers
3395 Found in file sv.h
3396
3397 =item SvPV_nolen
3398
3399 Returns a pointer to the string in the SV, or a stringified form of
3400 the SV if the SV does not contain a string.  The SV may cache the
3401 stringified form becoming C<SvPOK>.  Handles 'get' magic.
3402
3403         char*   SvPV_nolen(SV* sv)
3404
3405 =for hackers
3406 Found in file sv.h
3407
3408 =item SvREFCNT
3409
3410 Returns the value of the object's reference count.
3411
3412         U32     SvREFCNT(SV* sv)
3413
3414 =for hackers
3415 Found in file sv.h
3416
3417 =item SvREFCNT_dec
3418
3419 Decrements the reference count of the given SV.
3420
3421         void    SvREFCNT_dec(SV* sv)
3422
3423 =for hackers
3424 Found in file sv.h
3425
3426 =item SvREFCNT_inc
3427
3428 Increments the reference count of the given SV.
3429
3430         SV*     SvREFCNT_inc(SV* sv)
3431
3432 =for hackers
3433 Found in file sv.h
3434
3435 =item SvROK
3436
3437 Tests if the SV is an RV.
3438
3439         bool    SvROK(SV* sv)
3440
3441 =for hackers
3442 Found in file sv.h
3443
3444 =item SvROK_off
3445
3446 Unsets the RV status of an SV.
3447
3448         void    SvROK_off(SV* sv)
3449
3450 =for hackers
3451 Found in file sv.h
3452
3453 =item SvROK_on
3454
3455 Tells an SV that it is an RV.
3456
3457         void    SvROK_on(SV* sv)
3458
3459 =for hackers
3460 Found in file sv.h
3461
3462 =item SvRV
3463
3464 Dereferences an RV to return the SV.
3465
3466         SV*     SvRV(SV* sv)
3467
3468 =for hackers
3469 Found in file sv.h
3470
3471 =item SvSTASH
3472
3473 Returns the stash of the SV.
3474
3475         HV*     SvSTASH(SV* sv)
3476
3477 =for hackers
3478 Found in file sv.h
3479
3480 =item SvTAINT
3481
3482 Taints an SV if tainting is enabled.
3483
3484         void    SvTAINT(SV* sv)
3485
3486 =for hackers
3487 Found in file sv.h
3488
3489 =item SvTAINTED
3490
3491 Checks to see if an SV is tainted. Returns TRUE if it is, FALSE if
3492 not.
3493
3494         bool    SvTAINTED(SV* sv)
3495
3496 =for hackers
3497 Found in file sv.h
3498
3499 =item SvTAINTED_off
3500
3501 Untaints an SV. Be I<very> careful with this routine, as it short-circuits
3502 some of Perl's fundamental security features. XS module authors should not
3503 use this function unless they fully understand all the implications of
3504 unconditionally untainting the value. Untainting should be done in the
3505 standard perl fashion, via a carefully crafted regexp, rather than directly
3506 untainting variables.
3507
3508         void    SvTAINTED_off(SV* sv)
3509
3510 =for hackers
3511 Found in file sv.h
3512
3513 =item SvTAINTED_on
3514
3515 Marks an SV as tainted if tainting is enabled.
3516
3517         void    SvTAINTED_on(SV* sv)
3518
3519 =for hackers
3520 Found in file sv.h
3521
3522 =item SvTRUE
3523
3524 Returns a boolean indicating whether Perl would evaluate the SV as true or
3525 false, defined or undefined.  Does not handle 'get' magic.
3526
3527         bool    SvTRUE(SV* sv)
3528
3529 =for hackers
3530 Found in file sv.h
3531
3532 =item SvTYPE
3533
3534 Returns the type of the SV.  See C<svtype>.
3535
3536         svtype  SvTYPE(SV* sv)
3537
3538 =for hackers
3539 Found in file sv.h
3540
3541 =item SvUOK
3542
3543 Returns a boolean indicating whether the SV contains an unsigned integer.
3544
3545         void    SvUOK(SV* sv)
3546
3547 =for hackers
3548 Found in file sv.h
3549
3550 =item SvUPGRADE
3551
3552 Used to upgrade an SV to a more complex form.  Uses C<sv_upgrade> to
3553 perform the upgrade if necessary.  See C<svtype>.
3554
3555         void    SvUPGRADE(SV* sv, svtype type)
3556
3557 =for hackers
3558 Found in file sv.h
3559
3560 =item SvUTF8
3561
3562 Returns a boolean indicating whether the SV contains UTF-8 encoded data.
3563
3564         bool    SvUTF8(SV* sv)
3565
3566 =for hackers
3567 Found in file sv.h
3568
3569 =item SvUTF8_off
3570
3571 Unsets the UTF-8 status of an SV.
3572
3573         void    SvUTF8_off(SV *sv)
3574
3575 =for hackers
3576 Found in file sv.h
3577
3578 =item SvUTF8_on
3579
3580 Turn on the UTF-8 status of an SV (the data is not changed, just the flag).
3581 Do not use frivolously.
3582
3583         void    SvUTF8_on(SV *sv)
3584
3585 =for hackers
3586 Found in file sv.h
3587
3588 =item SvUV
3589
3590 Coerces the given SV to an unsigned integer and returns it.  See C<SvUVx>
3591 for a version which guarantees to evaluate sv only once.
3592
3593         UV      SvUV(SV* sv)
3594
3595 =for hackers
3596 Found in file sv.h
3597
3598 =item SvUVX
3599
3600 Returns the raw value in the SV's UV slot, without checks or conversions.
3601 Only use when you are sure SvIOK is true. See also C<SvUV()>.
3602
3603         UV      SvUVX(SV* sv)
3604
3605 =for hackers
3606 Found in file sv.h
3607
3608 =item SvUVx
3609
3610 Coerces the given SV to an unsigned integer and returns it. Guarantees to
3611 evaluate sv only once. Use the more efficient C<SvUV> otherwise.
3612
3613         UV      SvUVx(SV* sv)
3614
3615 =for hackers
3616 Found in file sv.h
3617
3618 =item sv_2bool
3619
3620 This function is only called on magical items, and is only used by
3621 sv_true() or its macro equivalent.
3622
3623         bool    sv_2bool(SV* sv)
3624
3625 =for hackers
3626 Found in file sv.c
3627
3628 =item sv_2cv
3629
3630 Using various gambits, try to get a CV from an SV; in addition, try if
3631 possible to set C<*st> and C<*gvp> to the stash and GV associated with it.
3632
3633         CV*     sv_2cv(SV* sv, HV** st, GV** gvp, I32 lref)
3634
3635 =for hackers
3636 Found in file sv.c
3637
3638 =item sv_2io
3639
3640 Using various gambits, try to get an IO from an SV: the IO slot if its a
3641 GV; or the recursive result if we're an RV; or the IO slot of the symbol
3642 named after the PV if we're a string.
3643
3644         IO*     sv_2io(SV* sv)
3645
3646 =for hackers
3647 Found in file sv.c
3648
3649 =item sv_2iv
3650
3651 Return the integer value of an SV, doing any necessary string conversion,
3652 magic etc. Normally used via the C<SvIV(sv)> and C<SvIVx(sv)> macros.
3653
3654         IV      sv_2iv(SV* sv)
3655
3656 =for hackers
3657 Found in file sv.c
3658
3659 =item sv_2mortal
3660
3661 Marks an existing SV as mortal.  The SV will be destroyed "soon", either
3662 by an explicit call to FREETMPS, or by an implicit call at places such as
3663 statement boundaries.  SvTEMP() is turned on which means that the SV's
3664 string buffer can be "stolen" if this SV is copied. See also C<sv_newmortal>
3665 and C<sv_mortalcopy>.
3666
3667         SV*     sv_2mortal(SV* sv)
3668
3669 =for hackers
3670 Found in file sv.c
3671
3672 =item sv_2nv
3673
3674 Return the num value of an SV, doing any necessary string or integer
3675 conversion, magic etc. Normally used via the C<SvNV(sv)> and C<SvNVx(sv)>
3676 macros.
3677
3678         NV      sv_2nv(SV* sv)
3679
3680 =for hackers
3681 Found in file sv.c
3682
3683 =item sv_2pvbyte
3684
3685 Return a pointer to the byte-encoded representation of the SV, and set *lp
3686 to its length.  May cause the SV to be downgraded from UTF-8 as a
3687 side-effect.
3688
3689 Usually accessed via the C<SvPVbyte> macro.
3690
3691         char*   sv_2pvbyte(SV* sv, STRLEN* lp)
3692
3693 =for hackers
3694 Found in file sv.c
3695
3696 =item sv_2pvbyte_nolen
3697
3698 Return a pointer to the byte-encoded representation of the SV.
3699 May cause the SV to be downgraded from UTF-8 as a side-effect.
3700
3701 Usually accessed via the C<SvPVbyte_nolen> macro.
3702
3703         char*   sv_2pvbyte_nolen(SV* sv)
3704
3705 =for hackers
3706 Found in file sv.c
3707
3708 =item sv_2pvutf8
3709
3710 Return a pointer to the UTF-8-encoded representation of the SV, and set *lp
3711 to its length.  May cause the SV to be upgraded to UTF-8 as a side-effect.
3712
3713 Usually accessed via the C<SvPVutf8> macro.
3714
3715         char*   sv_2pvutf8(SV* sv, STRLEN* lp)
3716
3717 =for hackers
3718 Found in file sv.c
3719
3720 =item sv_2pvutf8_nolen
3721
3722 Return a pointer to the UTF-8-encoded representation of the SV.
3723 May cause the SV to be upgraded to UTF-8 as a side-effect.
3724
3725 Usually accessed via the C<SvPVutf8_nolen> macro.
3726
3727         char*   sv_2pvutf8_nolen(SV* sv)
3728
3729 =for hackers
3730 Found in file sv.c
3731
3732 =item sv_2pv_flags
3733
3734 Returns a pointer to the string value of an SV, and sets *lp to its length.
3735 If flags includes SV_GMAGIC, does an mg_get() first. Coerces sv to a string
3736 if necessary.
3737 Normally invoked via the C<SvPV_flags> macro. C<sv_2pv()> and C<sv_2pv_nomg>
3738 usually end up here too.
3739
3740         char*   sv_2pv_flags(SV* sv, STRLEN* lp, I32 flags)
3741
3742 =for hackers
3743 Found in file sv.c
3744
3745 =item sv_2pv_nolen
3746
3747 Like C<sv_2pv()>, but doesn't return the length too. You should usually
3748 use the macro wrapper C<SvPV_nolen(sv)> instead.
3749         char*   sv_2pv_nolen(SV* sv)
3750
3751 =for hackers
3752 Found in file sv.c
3753
3754 =item sv_2uv
3755
3756 Return the unsigned integer value of an SV, doing any necessary string
3757 conversion, magic etc. Normally used via the C<SvUV(sv)> and C<SvUVx(sv)>
3758 macros.
3759
3760         UV      sv_2uv(SV* sv)
3761
3762 =for hackers
3763 Found in file sv.c
3764
3765 =item sv_backoff
3766
3767 Remove any string offset. You should normally use the C<SvOOK_off> macro
3768 wrapper instead.
3769
3770         int     sv_backoff(SV* sv)
3771
3772 =for hackers
3773 Found in file sv.c
3774
3775 =item sv_bless
3776
3777 Blesses an SV into a specified package.  The SV must be an RV.  The package
3778 must be designated by its stash (see C<gv_stashpv()>).  The reference count
3779 of the SV is unaffected.
3780
3781         SV*     sv_bless(SV* sv, HV* stash)
3782
3783 =for hackers
3784 Found in file sv.c
3785
3786 =item sv_catpv
3787
3788 Concatenates the string onto the end of the string which is in the SV.
3789 If the SV has the UTF-8 status set, then the bytes appended should be
3790 valid UTF-8.  Handles 'get' magic, but not 'set' magic.  See C<sv_catpv_mg>.
3791
3792         void    sv_catpv(SV* sv, const char* ptr)
3793
3794 =for hackers
3795 Found in file sv.c
3796
3797 =item sv_catpvf
3798
3799 Processes its arguments like C<sprintf> and appends the formatted
3800 output to an SV.  If the appended data contains "wide" characters
3801 (including, but not limited to, SVs with a UTF-8 PV formatted with %s,
3802 and characters >255 formatted with %c), the original SV might get
3803 upgraded to UTF-8.  Handles 'get' magic, but not 'set' magic.  See
3804 C<sv_catpvf_mg>. If the original SV was UTF-8, the pattern should be
3805 valid UTF-8; if the original SV was bytes, the pattern should be too.
3806
3807         void    sv_catpvf(SV* sv, const char* pat, ...)
3808
3809 =for hackers
3810 Found in file sv.c
3811
3812 =item sv_catpvf_mg
3813
3814 Like C<sv_catpvf>, but also handles 'set' magic.
3815
3816         void    sv_catpvf_mg(SV *sv, const char* pat, ...)
3817
3818 =for hackers
3819 Found in file sv.c
3820
3821 =item sv_catpvn
3822
3823 Concatenates the string onto the end of the string which is in the SV.  The
3824 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
3825 status set, then the bytes appended should be valid UTF-8.
3826 Handles 'get' magic, but not 'set' magic.  See C<sv_catpvn_mg>.
3827
3828         void    sv_catpvn(SV* sv, const char* ptr, STRLEN len)
3829
3830 =for hackers
3831 Found in file sv.c
3832
3833 =item sv_catpvn_flags
3834
3835 Concatenates the string onto the end of the string which is in the SV.  The
3836 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
3837 status set, then the bytes appended should be valid UTF-8.
3838 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<dsv> if
3839 appropriate, else not. C<sv_catpvn> and C<sv_catpvn_nomg> are implemented
3840 in terms of this function.
3841
3842         void    sv_catpvn_flags(SV* sv, const char* ptr, STRLEN len, I32 flags)
3843
3844 =for hackers
3845 Found in file sv.c
3846
3847 =item sv_catpvn_mg
3848
3849 Like C<sv_catpvn>, but also handles 'set' magic.
3850
3851         void    sv_catpvn_mg(SV *sv, const char *ptr, STRLEN len)
3852
3853 =for hackers
3854 Found in file sv.c
3855
3856 =item sv_catpvn_nomg
3857
3858 Like C<sv_catpvn> but doesn't process magic.
3859
3860         void    sv_catpvn_nomg(SV* sv, const char* ptr, STRLEN len)
3861
3862 =for hackers
3863 Found in file sv.h
3864
3865 =item sv_catpv_mg
3866
3867 Like C<sv_catpv>, but also handles 'set' magic.
3868
3869         void    sv_catpv_mg(SV *sv, const char *ptr)
3870
3871 =for hackers
3872 Found in file sv.c
3873
3874 =item sv_catsv
3875
3876 Concatenates the string from SV C<ssv> onto the end of the string in
3877 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  Handles 'get' magic, but
3878 not 'set' magic.  See C<sv_catsv_mg>.
3879
3880         void    sv_catsv(SV* dsv, SV* ssv)
3881
3882 =for hackers
3883 Found in file sv.c
3884
3885 =item sv_catsv_flags
3886
3887 Concatenates the string from SV C<ssv> onto the end of the string in
3888 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  If C<flags> has C<SV_GMAGIC>
3889 bit set, will C<mg_get> on the SVs if appropriate, else not. C<sv_catsv>
3890 and C<sv_catsv_nomg> are implemented in terms of this function.
3891
3892         void    sv_catsv_flags(SV* dsv, SV* ssv, I32 flags)
3893
3894 =for hackers
3895 Found in file sv.c
3896
3897 =item sv_catsv_mg
3898
3899 Like C<sv_catsv>, but also handles 'set' magic.
3900
3901         void    sv_catsv_mg(SV *dstr, SV *sstr)
3902
3903 =for hackers
3904 Found in file sv.c
3905
3906 =item sv_catsv_nomg
3907
3908 Like C<sv_catsv> but doesn't process magic.
3909
3910         void    sv_catsv_nomg(SV* dsv, SV* ssv)
3911
3912 =for hackers
3913 Found in file sv.h
3914
3915 =item sv_chop
3916
3917 Efficient removal of characters from the beginning of the string buffer.
3918 SvPOK(sv) must be true and the C<ptr> must be a pointer to somewhere inside
3919 the string buffer.  The C<ptr> becomes the first character of the adjusted
3920 string. Uses the "OOK hack".
3921 Beware: after this function returns, C<ptr> and SvPVX(sv) may no longer
3922 refer to the same chunk of data.
3923
3924         void    sv_chop(SV* sv, char* ptr)
3925
3926 =for hackers
3927 Found in file sv.c
3928
3929 =item sv_clear
3930
3931 Clear an SV: call any destructors, free up any memory used by the body,
3932 and free the body itself. The SV's head is I<not> freed, although
3933 its type is set to all 1's so that it won't inadvertently be assumed
3934 to be live during global destruction etc.
3935 This function should only be called when REFCNT is zero. Most of the time
3936 you'll want to call C<sv_free()> (or its macro wrapper C<SvREFCNT_dec>)
3937 instead.
3938
3939         void    sv_clear(SV* sv)
3940
3941 =for hackers
3942 Found in file sv.c
3943
3944 =item sv_cmp
3945
3946 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
3947 string in C<sv1> is less than, equal to, or greater than the string in
3948 C<sv2>. Is UTF-8 and 'use bytes' aware, handles get magic, and will
3949 coerce its args to strings if necessary.  See also C<sv_cmp_locale>.
3950
3951         I32     sv_cmp(SV* sv1, SV* sv2)
3952
3953 =for hackers
3954 Found in file sv.c
3955
3956 =item sv_cmp_locale
3957
3958 Compares the strings in two SVs in a locale-aware manner. Is UTF-8 and
3959 'use bytes' aware, handles get magic, and will coerce its args to strings
3960 if necessary.  See also C<sv_cmp_locale>.  See also C<sv_cmp>.
3961
3962         I32     sv_cmp_locale(SV* sv1, SV* sv2)
3963
3964 =for hackers
3965 Found in file sv.c
3966
3967 =item sv_collxfrm
3968
3969 Add Collate Transform magic to an SV if it doesn't already have it.
3970
3971 Any scalar variable may carry PERL_MAGIC_collxfrm magic that contains the
3972 scalar data of the variable, but transformed to such a format that a normal
3973 memory comparison can be used to compare the data according to the locale
3974 settings.
3975
3976         char*   sv_collxfrm(SV* sv, STRLEN* nxp)
3977
3978 =for hackers
3979 Found in file sv.c
3980
3981 =item sv_copypv
3982
3983 Copies a stringified representation of the source SV into the
3984 destination SV.  Automatically performs any necessary mg_get and
3985 coercion of numeric values into strings.  Guaranteed to preserve
3986 UTF-8 flag even from overloaded objects.  Similar in nature to
3987 sv_2pv[_flags] but operates directly on an SV instead of just the
3988 string.  Mostly uses sv_2pv_flags to do its work, except when that
3989 would lose the UTF-8'ness of the PV.
3990
3991         void    sv_copypv(SV* dsv, SV* ssv)
3992
3993 =for hackers
3994 Found in file sv.c
3995
3996 =item sv_dec
3997
3998 Auto-decrement of the value in the SV, doing string to numeric conversion
3999 if necessary. Handles 'get' magic.
4000
4001         void    sv_dec(SV* sv)
4002
4003 =for hackers
4004 Found in file sv.c
4005
4006 =item sv_derived_from
4007
4008 Returns a boolean indicating whether the SV is derived from the specified
4009 class.  This is the function that implements C<UNIVERSAL::isa>.  It works
4010 for class names as well as for objects.
4011
4012         bool    sv_derived_from(SV* sv, const char* name)
4013
4014 =for hackers
4015 Found in file universal.c
4016
4017 =item sv_eq
4018
4019 Returns a boolean indicating whether the strings in the two SVs are
4020 identical. Is UTF-8 and 'use bytes' aware, handles get magic, and will
4021 coerce its args to strings if necessary.
4022
4023         I32     sv_eq(SV* sv1, SV* sv2)
4024
4025 =for hackers
4026 Found in file sv.c
4027
4028 =item sv_force_normal
4029
4030 Undo various types of fakery on an SV: if the PV is a shared string, make
4031 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
4032 an xpvmg. See also C<sv_force_normal_flags>.
4033
4034         void    sv_force_normal(SV *sv)
4035
4036 =for hackers
4037 Found in file sv.c
4038
4039 =item sv_force_normal_flags
4040
4041 Undo various types of fakery on an SV: if the PV is a shared string, make
4042 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
4043 an xpvmg. The C<flags> parameter gets passed to  C<sv_unref_flags()>
4044 when unrefing. C<sv_force_normal> calls this function with flags set to 0.
4045
4046         void    sv_force_normal_flags(SV *sv, U32 flags)
4047
4048 =for hackers
4049 Found in file sv.c
4050
4051 =item sv_free
4052
4053 Decrement an SV's reference count, and if it drops to zero, call
4054 C<sv_clear> to invoke destructors and free up any memory used by
4055 the body; finally, deallocate the SV's head itself.
4056 Normally called via a wrapper macro C<SvREFCNT_dec>.
4057
4058         void    sv_free(SV* sv)
4059
4060 =for hackers
4061 Found in file sv.c
4062
4063 =item sv_gets
4064
4065 Get a line from the filehandle and store it into the SV, optionally
4066 appending to the currently-stored string.
4067
4068         char*   sv_gets(SV* sv, PerlIO* fp, I32 append)
4069
4070 =for hackers
4071 Found in file sv.c
4072
4073 =item sv_grow
4074
4075 Expands the character buffer in the SV.  If necessary, uses C<sv_unref> and
4076 upgrades the SV to C<SVt_PV>.  Returns a pointer to the character buffer.
4077 Use the C<SvGROW> wrapper instead.
4078
4079         char*   sv_grow(SV* sv, STRLEN newlen)
4080
4081 =for hackers
4082 Found in file sv.c
4083
4084 =item sv_inc
4085
4086 Auto-increment of the value in the SV, doing string to numeric conversion
4087 if necessary. Handles 'get' magic.
4088
4089         void    sv_inc(SV* sv)
4090
4091 =for hackers
4092 Found in file sv.c
4093
4094 =item sv_insert
4095
4096 Inserts a string at the specified offset/length within the SV. Similar to
4097 the Perl substr() function.
4098
4099         void    sv_insert(SV* bigsv, STRLEN offset, STRLEN len, char* little, STRLEN littlelen)
4100
4101 =for hackers
4102 Found in file sv.c
4103
4104 =item sv_isa
4105
4106 Returns a boolean indicating whether the SV is blessed into the specified
4107 class.  This does not check for subtypes; use C<sv_derived_from> to verify
4108 an inheritance relationship.
4109
4110         int     sv_isa(SV* sv, const char* name)
4111
4112 =for hackers
4113 Found in file sv.c
4114
4115 =item sv_isobject
4116
4117 Returns a boolean indicating whether the SV is an RV pointing to a blessed
4118 object.  If the SV is not an RV, or if the object is not blessed, then this
4119 will return false.
4120
4121         int     sv_isobject(SV* sv)
4122
4123 =for hackers
4124 Found in file sv.c
4125
4126 =item sv_iv
4127
4128 A private implementation of the C<SvIVx> macro for compilers which can't
4129 cope with complex macro expressions. Always use the macro instead.
4130
4131         IV      sv_iv(SV* sv)
4132
4133 =for hackers
4134 Found in file sv.c
4135
4136 =item sv_len
4137
4138 Returns the length of the string in the SV. Handles magic and type
4139 coercion.  See also C<SvCUR>, which gives raw access to the xpv_cur slot.
4140
4141         STRLEN  sv_len(SV* sv)
4142
4143 =for hackers
4144 Found in file sv.c
4145
4146 =item sv_len_utf8
4147
4148 Returns the number of characters in the string in an SV, counting wide
4149 UTF-8 bytes as a single character. Handles magic and type coercion.
4150
4151         STRLEN  sv_len_utf8(SV* sv)
4152
4153 =for hackers
4154 Found in file sv.c
4155
4156 =item sv_magic
4157
4158 Adds magic to an SV. First upgrades C<sv> to type C<SVt_PVMG> if necessary,
4159 then adds a new magic item of type C<how> to the head of the magic list.
4160
4161 See C<sv_magicext> (which C<sv_magic> now calls) for a description of the
4162 handling of the C<name> and C<namlen> arguments.
4163
4164 You need to use C<sv_magicext> to add magic to SvREADONLY SVs and also
4165 to add more than one instance of the same 'how'.
4166
4167         void    sv_magic(SV* sv, SV* obj, int how, const char* name, I32 namlen)
4168
4169 =for hackers
4170 Found in file sv.c
4171
4172 =item sv_magicext
4173
4174 Adds magic to an SV, upgrading it if necessary. Applies the
4175 supplied vtable and returns a pointer to the magic added.
4176
4177 Note that C<sv_magicext> will allow things that C<sv_magic> will not.
4178 In particular, you can add magic to SvREADONLY SVs, and add more than
4179 one instance of the same 'how'.
4180
4181 If C<namlen> is greater than zero then a C<savepvn> I<copy> of C<name> is
4182 stored, if C<namlen> is zero then C<name> is stored as-is and - as another
4183 special case - if C<(name && namlen == HEf_SVKEY)> then C<name> is assumed
4184 to contain an C<SV*> and is stored as-is with its REFCNT incremented.
4185
4186 (This is now used as a subroutine by C<sv_magic>.)
4187
4188         MAGIC * sv_magicext(SV* sv, SV* obj, int how, MGVTBL *vtbl, const char* name, I32 namlen)
4189
4190 =for hackers
4191 Found in file sv.c
4192
4193 =item sv_mortalcopy
4194
4195 Creates a new SV which is a copy of the original SV (using C<sv_setsv>).
4196 The new SV is marked as mortal. It will be destroyed "soon", either by an
4197 explicit call to FREETMPS, or by an implicit call at places such as
4198 statement boundaries.  See also C<sv_newmortal> and C<sv_2mortal>.
4199
4200         SV*     sv_mortalcopy(SV* oldsv)
4201
4202 =for hackers
4203 Found in file sv.c
4204
4205 =item sv_newmortal
4206
4207 Creates a new null SV which is mortal.  The reference count of the SV is
4208 set to 1. It will be destroyed "soon", either by an explicit call to
4209 FREETMPS, or by an implicit call at places such as statement boundaries.
4210 See also C<sv_mortalcopy> and C<sv_2mortal>.
4211
4212         SV*     sv_newmortal()
4213
4214 =for hackers
4215 Found in file sv.c
4216
4217 =item sv_newref
4218
4219 Increment an SV's reference count. Use the C<SvREFCNT_inc()> wrapper
4220 instead.
4221
4222         SV*     sv_newref(SV* sv)
4223
4224 =for hackers
4225 Found in file sv.c
4226
4227 =item sv_nv
4228
4229 A private implementation of the C<SvNVx> macro for compilers which can't
4230 cope with complex macro expressions. Always use the macro instead.
4231
4232         NV      sv_nv(SV* sv)
4233
4234 =for hackers
4235 Found in file sv.c
4236
4237 =item sv_pos_b2u
4238
4239 Converts the value pointed to by offsetp from a count of bytes from the
4240 start of the string, to a count of the equivalent number of UTF-8 chars.
4241 Handles magic and type coercion.
4242
4243         void    sv_pos_b2u(SV* sv, I32* offsetp)
4244
4245 =for hackers
4246 Found in file sv.c
4247
4248 =item sv_pos_u2b
4249
4250 Converts the value pointed to by offsetp from a count of UTF-8 chars from
4251 the start of the string, to a count of the equivalent number of bytes; if
4252 lenp is non-zero, it does the same to lenp, but this time starting from
4253 the offset, rather than from the start of the string. Handles magic and
4254 type coercion.
4255
4256         void    sv_pos_u2b(SV* sv, I32* offsetp, I32* lenp)
4257
4258 =for hackers
4259 Found in file sv.c
4260
4261 =item sv_pv
4262
4263 Use the C<SvPV_nolen> macro instead
4264
4265         char*   sv_pv(SV *sv)
4266
4267 =for hackers
4268 Found in file sv.c
4269
4270 =item sv_pvbyte
4271
4272 Use C<SvPVbyte_nolen> instead.
4273
4274         char*   sv_pvbyte(SV *sv)
4275
4276 =for hackers
4277 Found in file sv.c
4278
4279 =item sv_pvbyten
4280
4281 A private implementation of the C<SvPVbyte> macro for compilers
4282 which can't cope with complex macro expressions. Always use the macro
4283 instead.
4284
4285         char*   sv_pvbyten(SV *sv, STRLEN *len)
4286
4287 =for hackers
4288 Found in file sv.c
4289
4290 =item sv_pvbyten_force
4291
4292 A private implementation of the C<SvPVbytex_force> macro for compilers
4293 which can't cope with complex macro expressions. Always use the macro
4294 instead.
4295
4296         char*   sv_pvbyten_force(SV* sv, STRLEN* lp)
4297
4298 =for hackers
4299 Found in file sv.c
4300
4301 =item sv_pvn
4302
4303 A private implementation of the C<SvPV> macro for compilers which can't
4304 cope with complex macro expressions. Always use the macro instead.
4305
4306         char*   sv_pvn(SV *sv, STRLEN *len)
4307
4308 =for hackers
4309 Found in file sv.c
4310
4311 =item sv_pvn_force
4312
4313 Get a sensible string out of the SV somehow.
4314 A private implementation of the C<SvPV_force> macro for compilers which
4315 can't cope with complex macro expressions. Always use the macro instead.
4316
4317         char*   sv_pvn_force(SV* sv, STRLEN* lp)
4318
4319 =for hackers
4320 Found in file sv.c
4321
4322 =item sv_pvn_force_flags
4323
4324 Get a sensible string out of the SV somehow.
4325 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<sv> if
4326 appropriate, else not. C<sv_pvn_force> and C<sv_pvn_force_nomg> are
4327 implemented in terms of this function.
4328 You normally want to use the various wrapper macros instead: see
4329 C<SvPV_force> and C<SvPV_force_nomg>
4330
4331         char*   sv_pvn_force_flags(SV* sv, STRLEN* lp, I32 flags)
4332
4333 =for hackers
4334 Found in file sv.c
4335
4336 =item sv_pvutf8
4337
4338 Use the C<SvPVutf8_nolen> macro instead
4339
4340         char*   sv_pvutf8(SV *sv)
4341
4342 =for hackers
4343 Found in file sv.c
4344
4345 =item sv_pvutf8n
4346
4347 A private implementation of the C<SvPVutf8> macro for compilers
4348 which can't cope with complex macro expressions. Always use the macro
4349 instead.
4350
4351         char*   sv_pvutf8n(SV *sv, STRLEN *len)
4352
4353 =for hackers
4354 Found in file sv.c
4355
4356 =item sv_pvutf8n_force
4357
4358 A private implementation of the C<SvPVutf8_force> macro for compilers
4359 which can't cope with complex macro expressions. Always use the macro
4360 instead.
4361
4362         char*   sv_pvutf8n_force(SV* sv, STRLEN* lp)
4363
4364 =for hackers
4365 Found in file sv.c
4366
4367 =item sv_reftype
4368
4369 Returns a string describing what the SV is a reference to.
4370
4371         char*   sv_reftype(SV* sv, int ob)
4372
4373 =for hackers
4374 Found in file sv.c
4375
4376 =item sv_replace
4377
4378 Make the first argument a copy of the second, then delete the original.
4379 The target SV physically takes over ownership of the body of the source SV
4380 and inherits its flags; however, the target keeps any magic it owns,
4381 and any magic in the source is discarded.
4382 Note that this is a rather specialist SV copying operation; most of the
4383 time you'll want to use C<sv_setsv> or one of its many macro front-ends.
4384
4385         void    sv_replace(SV* sv, SV* nsv)
4386
4387 =for hackers
4388 Found in file sv.c
4389
4390 =item sv_report_used
4391
4392 Dump the contents of all SVs not yet freed. (Debugging aid).
4393
4394         void    sv_report_used()
4395
4396 =for hackers
4397 Found in file sv.c
4398
4399 =item sv_reset
4400
4401 Underlying implementation for the C<reset> Perl function.
4402 Note that the perl-level function is vaguely deprecated.
4403
4404         void    sv_reset(char* s, HV* stash)
4405
4406 =for hackers
4407 Found in file sv.c
4408
4409 =item sv_rvweaken
4410
4411 Weaken a reference: set the C<SvWEAKREF> flag on this RV; give the
4412 referred-to SV C<PERL_MAGIC_backref> magic if it hasn't already; and
4413 push a back-reference to this RV onto the array of backreferences
4414 associated with that magic.
4415
4416         SV*     sv_rvweaken(SV *sv)
4417
4418 =for hackers
4419 Found in file sv.c
4420
4421 =item sv_setiv
4422
4423 Copies an integer into the given SV, upgrading first if necessary.
4424 Does not handle 'set' magic.  See also C<sv_setiv_mg>.
4425
4426         void    sv_setiv(SV* sv, IV num)
4427
4428 =for hackers
4429 Found in file sv.c
4430
4431 =item sv_setiv_mg
4432
4433 Like C<sv_setiv>, but also handles 'set' magic.
4434
4435         void    sv_setiv_mg(SV *sv, IV i)
4436
4437 =for hackers
4438 Found in file sv.c
4439
4440 =item sv_setnv
4441
4442 Copies a double into the given SV, upgrading first if necessary.
4443 Does not handle 'set' magic.  See also C<sv_setnv_mg>.
4444
4445         void    sv_setnv(SV* sv, NV num)
4446
4447 =for hackers
4448 Found in file sv.c
4449
4450 =item sv_setnv_mg
4451
4452 Like C<sv_setnv>, but also handles 'set' magic.
4453
4454         void    sv_setnv_mg(SV *sv, NV num)
4455
4456 =for hackers
4457 Found in file sv.c
4458
4459 =item sv_setpv
4460
4461 Copies a string into an SV.  The string must be null-terminated.  Does not
4462 handle 'set' magic.  See C<sv_setpv_mg>.
4463
4464         void    sv_setpv(SV* sv, const char* ptr)
4465
4466 =for hackers
4467 Found in file sv.c
4468
4469 =item sv_setpvf
4470
4471 Works like C<sv_catpvf> but copies the text into the SV instead of
4472 appending it.  Does not handle 'set' magic.  See C<sv_setpvf_mg>.
4473
4474         void    sv_setpvf(SV* sv, const char* pat, ...)
4475
4476 =for hackers
4477 Found in file sv.c
4478
4479 =item sv_setpvf_mg
4480
4481 Like C<sv_setpvf>, but also handles 'set' magic.
4482
4483         void    sv_setpvf_mg(SV *sv, const char* pat, ...)
4484
4485 =for hackers
4486 Found in file sv.c
4487
4488 =item sv_setpviv
4489
4490 Copies an integer into the given SV, also updating its string value.
4491 Does not handle 'set' magic.  See C<sv_setpviv_mg>.
4492
4493         void    sv_setpviv(SV* sv, IV num)
4494
4495 =for hackers
4496 Found in file sv.c
4497
4498 =item sv_setpviv_mg
4499
4500 Like C<sv_setpviv>, but also handles 'set' magic.
4501
4502         void    sv_setpviv_mg(SV *sv, IV iv)
4503
4504 =for hackers
4505 Found in file sv.c
4506
4507 =item sv_setpvn
4508
4509 Copies a string into an SV.  The C<len> parameter indicates the number of
4510 bytes to be copied.  If the C<ptr> argument is NULL the SV will become
4511 undefined.  Does not handle 'set' magic.  See C<sv_setpvn_mg>.
4512
4513         void    sv_setpvn(SV* sv, const char* ptr, STRLEN len)
4514
4515 =for hackers
4516 Found in file sv.c
4517
4518 =item sv_setpvn_mg
4519
4520 Like C<sv_setpvn>, but also handles 'set' magic.
4521
4522         void    sv_setpvn_mg(SV *sv, const char *ptr, STRLEN len)
4523
4524 =for hackers
4525 Found in file sv.c
4526
4527 =item sv_setpv_mg
4528
4529 Like C<sv_setpv>, but also handles 'set' magic.
4530
4531         void    sv_setpv_mg(SV *sv, const char *ptr)
4532
4533 =for hackers
4534 Found in file sv.c
4535
4536 =item sv_setref_iv
4537
4538 Copies an integer into a new SV, optionally blessing the SV.  The C<rv>
4539 argument will be upgraded to an RV.  That RV will be modified to point to
4540 the new SV.  The C<classname> argument indicates the package for the
4541 blessing.  Set C<classname> to C<Nullch> to avoid the blessing.  The new SV
4542 will have a reference count of 1, and the RV will be returned.
4543
4544         SV*     sv_setref_iv(SV* rv, const char* classname, IV iv)
4545
4546 =for hackers
4547 Found in file sv.c
4548
4549 =item sv_setref_nv
4550
4551 Copies a double into a new SV, optionally blessing the SV.  The C<rv>
4552 argument will be upgraded to an RV.  That RV will be modified to point to
4553 the new SV.  The C<classname> argument indicates the package for the
4554 blessing.  Set C<classname> to C<Nullch> to avoid the blessing.  The new SV
4555 will have a reference count of 1, and the RV will be returned.
4556
4557         SV*     sv_setref_nv(SV* rv, const char* classname, NV nv)
4558
4559 =for hackers
4560 Found in file sv.c
4561
4562 =item sv_setref_pv
4563
4564 Copies a pointer into a new SV, optionally blessing the SV.  The C<rv>
4565 argument will be upgraded to an RV.  That RV will be modified to point to
4566 the new SV.  If the C<pv> argument is NULL then C<PL_sv_undef> will be placed
4567 into the SV.  The C<classname> argument indicates the package for the
4568 blessing.  Set C<classname> to C<Nullch> to avoid the blessing.  The new SV
4569 will have a reference count of 1, and the RV will be returned.
4570
4571 Do not use with other Perl types such as HV, AV, SV, CV, because those
4572 objects will become corrupted by the pointer copy process.
4573
4574 Note that C<sv_setref_pvn> copies the string while this copies the pointer.
4575
4576         SV*     sv_setref_pv(SV* rv, const char* classname, void* pv)
4577
4578 =for hackers
4579 Found in file sv.c
4580
4581 =item sv_setref_pvn
4582
4583 Copies a string into a new SV, optionally blessing the SV.  The length of the
4584 string must be specified with C<n>.  The C<rv> argument will be upgraded to
4585 an RV.  That RV will be modified to point to the new SV.  The C<classname>
4586 argument indicates the package for the blessing.  Set C<classname> to
4587 C<Nullch> to avoid the blessing.  The new SV will have a reference count 
4588 of 1, and the RV will be returned.
4589
4590 Note that C<sv_setref_pv> copies the pointer while this copies the string.
4591
4592         SV*     sv_setref_pvn(SV* rv, const char* classname, char* pv, STRLEN n)
4593
4594 =for hackers
4595 Found in file sv.c
4596
4597 =item sv_setref_uv
4598
4599 Copies an unsigned integer into a new SV, optionally blessing the SV.  The C<rv>
4600 argument will be upgraded to an RV.  That RV will be modified to point to
4601 the new SV.  The C<classname> argument indicates the package for the
4602 blessing.  Set C<classname> to C<Nullch> to avoid the blessing.  The new SV
4603 will have a reference count of 1, and the RV will be returned.
4604
4605         SV*     sv_setref_uv(SV* rv, const char* classname, UV uv)
4606
4607 =for hackers
4608 Found in file sv.c
4609
4610 =item sv_setsv
4611
4612 Copies the contents of the source SV C<ssv> into the destination SV
4613 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
4614 function if the source SV needs to be reused. Does not handle 'set' magic.
4615 Loosely speaking, it performs a copy-by-value, obliterating any previous
4616 content of the destination.
4617
4618 You probably want to use one of the assortment of wrappers, such as
4619 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
4620 C<SvSetMagicSV_nosteal>.
4621
4622         void    sv_setsv(SV* dsv, SV* ssv)
4623
4624 =for hackers
4625 Found in file sv.c
4626
4627 =item sv_setsv_flags
4628
4629 Copies the contents of the source SV C<ssv> into the destination SV
4630 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
4631 function if the source SV needs to be reused. Does not handle 'set' magic.
4632 Loosely speaking, it performs a copy-by-value, obliterating any previous
4633 content of the destination.
4634 If the C<flags> parameter has the C<SV_GMAGIC> bit set, will C<mg_get> on
4635 C<ssv> if appropriate, else not. If the C<flags> parameter has the
4636 C<NOSTEAL> bit set then the buffers of temps will not be stolen. <sv_setsv>
4637 and C<sv_setsv_nomg> are implemented in terms of this function.
4638
4639 You probably want to use one of the assortment of wrappers, such as
4640 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
4641 C<SvSetMagicSV_nosteal>.
4642
4643 This is the primary function for copying scalars, and most other
4644 copy-ish functions and macros use this underneath.
4645
4646         void    sv_setsv_flags(SV* dsv, SV* ssv, I32 flags)
4647
4648 =for hackers
4649 Found in file sv.c
4650
4651 =item sv_setsv_mg
4652
4653 Like C<sv_setsv>, but also handles 'set' magic.
4654
4655         void    sv_setsv_mg(SV *dstr, SV *sstr)
4656
4657 =for hackers
4658 Found in file sv.c
4659
4660 =item sv_setsv_nomg
4661
4662 Like C<sv_setsv> but doesn't process magic.
4663
4664         void    sv_setsv_nomg(SV* dsv, SV* ssv)
4665
4666 =for hackers
4667 Found in file sv.h
4668
4669 =item sv_setuv
4670
4671 Copies an unsigned integer into the given SV, upgrading first if necessary.
4672 Does not handle 'set' magic.  See also C<sv_setuv_mg>.
4673
4674         void    sv_setuv(SV* sv, UV num)
4675
4676 =for hackers
4677 Found in file sv.c
4678
4679 =item sv_setuv_mg
4680
4681 Like C<sv_setuv>, but also handles 'set' magic.
4682
4683         void    sv_setuv_mg(SV *sv, UV u)
4684
4685 =for hackers
4686 Found in file sv.c
4687
4688 =item sv_taint
4689
4690 Taint an SV. Use C<SvTAINTED_on> instead.
4691         void    sv_taint(SV* sv)
4692
4693 =for hackers
4694 Found in file sv.c
4695
4696 =item sv_tainted
4697
4698 Test an SV for taintedness. Use C<SvTAINTED> instead.
4699         bool    sv_tainted(SV* sv)
4700
4701 =for hackers
4702 Found in file sv.c
4703
4704 =item sv_true
4705
4706 Returns true if the SV has a true value by Perl's rules.
4707 Use the C<SvTRUE> macro instead, which may call C<sv_true()> or may
4708 instead use an in-line version.
4709
4710         I32     sv_true(SV *sv)
4711
4712 =for hackers
4713 Found in file sv.c
4714
4715 =item sv_unmagic
4716
4717 Removes all magic of type C<type> from an SV.
4718
4719         int     sv_unmagic(SV* sv, int type)
4720
4721 =for hackers
4722 Found in file sv.c
4723
4724 =item sv_unref
4725
4726 Unsets the RV status of the SV, and decrements the reference count of
4727 whatever was being referenced by the RV.  This can almost be thought of
4728 as a reversal of C<newSVrv>.  This is C<sv_unref_flags> with the C<flag>
4729 being zero.  See C<SvROK_off>.
4730
4731         void    sv_unref(SV* sv)
4732
4733 =for hackers
4734 Found in file sv.c
4735
4736 =item sv_unref_flags
4737
4738 Unsets the RV status of the SV, and decrements the reference count of
4739 whatever was being referenced by the RV.  This can almost be thought of
4740 as a reversal of C<newSVrv>.  The C<cflags> argument can contain
4741 C<SV_IMMEDIATE_UNREF> to force the reference count to be decremented
4742 (otherwise the decrementing is conditional on the reference count being
4743 different from one or the reference being a readonly SV).
4744 See C<SvROK_off>.
4745
4746         void    sv_unref_flags(SV* sv, U32 flags)
4747
4748 =for hackers
4749 Found in file sv.c
4750
4751 =item sv_untaint
4752
4753 Untaint an SV. Use C<SvTAINTED_off> instead.
4754         void    sv_untaint(SV* sv)
4755
4756 =for hackers
4757 Found in file sv.c
4758
4759 =item sv_upgrade
4760
4761 Upgrade an SV to a more complex form.  Generally adds a new body type to the
4762 SV, then copies across as much information as possible from the old body.
4763 You generally want to use the C<SvUPGRADE> macro wrapper. See also C<svtype>.
4764
4765         bool    sv_upgrade(SV* sv, U32 mt)
4766
4767 =for hackers
4768 Found in file sv.c
4769
4770 =item sv_usepvn
4771
4772 Tells an SV to use C<ptr> to find its string value.  Normally the string is
4773 stored inside the SV but sv_usepvn allows the SV to use an outside string.
4774 The C<ptr> should point to memory that was allocated by C<malloc>.  The
4775 string length, C<len>, must be supplied.  This function will realloc the
4776 memory pointed to by C<ptr>, so that pointer should not be freed or used by
4777 the programmer after giving it to sv_usepvn.  Does not handle 'set' magic.
4778 See C<sv_usepvn_mg>.
4779
4780         void    sv_usepvn(SV* sv, char* ptr, STRLEN len)
4781
4782 =for hackers
4783 Found in file sv.c
4784
4785 =item sv_usepvn_mg
4786
4787 Like C<sv_usepvn>, but also handles 'set' magic.
4788
4789         void    sv_usepvn_mg(SV *sv, char *ptr, STRLEN len)
4790
4791 =for hackers
4792 Found in file sv.c
4793
4794 =item sv_utf8_decode
4795
4796 If the PV of the SV is an octet sequence in UTF-8
4797 and contains a multiple-byte character, the C<SvUTF8> flag is turned on
4798 so that it looks like a character. If the PV contains only single-byte
4799 characters, the C<SvUTF8> flag stays being off.
4800 Scans PV for validity and returns false if the PV is invalid UTF-8.
4801
4802 NOTE: this function is experimental and may change or be
4803 removed without notice.
4804
4805         bool    sv_utf8_decode(SV *sv)
4806
4807 =for hackers
4808 Found in file sv.c
4809
4810 =item sv_utf8_downgrade
4811
4812 Attempts to convert the PV of an SV from characters to bytes.
4813 If the PV contains a character beyond byte, this conversion will fail;
4814 in this case, either returns false or, if C<fail_ok> is not
4815 true, croaks.
4816
4817 This is not as a general purpose Unicode to byte encoding interface:
4818 use the Encode extension for that.
4819
4820 NOTE: this function is experimental and may change or be
4821 removed without notice.
4822
4823         bool    sv_utf8_downgrade(SV *sv, bool fail_ok)
4824
4825 =for hackers
4826 Found in file sv.c
4827
4828 =item sv_utf8_encode
4829
4830 Converts the PV of an SV to UTF-8, but then turns the C<SvUTF8>
4831 flag off so that it looks like octets again.
4832
4833         void    sv_utf8_encode(SV *sv)
4834
4835 =for hackers
4836 Found in file sv.c
4837
4838 =item sv_utf8_upgrade
4839
4840 Converts the PV of an SV to its UTF-8-encoded form.
4841 Forces the SV to string form if it is not already.
4842 Always sets the SvUTF8 flag to avoid future validity checks even
4843 if all the bytes have hibit clear.
4844
4845 This is not as a general purpose byte encoding to Unicode interface:
4846 use the Encode extension for that.
4847
4848         STRLEN  sv_utf8_upgrade(SV *sv)
4849
4850 =for hackers
4851 Found in file sv.c
4852
4853 =item sv_utf8_upgrade_flags
4854
4855 Converts the PV of an SV to its UTF-8-encoded form.
4856 Forces the SV to string form if it is not already.
4857 Always sets the SvUTF8 flag to avoid future validity checks even
4858 if all the bytes have hibit clear. If C<flags> has C<SV_GMAGIC> bit set,
4859 will C<mg_get> on C<sv> if appropriate, else not. C<sv_utf8_upgrade> and
4860 C<sv_utf8_upgrade_nomg> are implemented in terms of this function.
4861
4862 This is not as a general purpose byte encoding to Unicode interface:
4863 use the Encode extension for that.
4864
4865         STRLEN  sv_utf8_upgrade_flags(SV *sv, I32 flags)
4866
4867 =for hackers
4868 Found in file sv.c
4869
4870 =item sv_uv
4871
4872 A private implementation of the C<SvUVx> macro for compilers which can't
4873 cope with complex macro expressions. Always use the macro instead.
4874
4875         UV      sv_uv(SV* sv)
4876
4877 =for hackers
4878 Found in file sv.c
4879
4880 =item sv_vcatpvf
4881
4882 Processes its arguments like C<vsprintf> and appends the formatted output
4883 to an SV.  Does not handle 'set' magic.  See C<sv_vcatpvf_mg>.
4884
4885 Usually used via its frontend C<sv_catpvf>.
4886
4887         void    sv_vcatpvf(SV* sv, const char* pat, va_list* args)
4888
4889 =for hackers
4890 Found in file sv.c
4891
4892 =item sv_vcatpvfn
4893
4894 Processes its arguments like C<vsprintf> and appends the formatted output
4895 to an SV.  Uses an array of SVs if the C style variable argument list is
4896 missing (NULL).  When running with taint checks enabled, indicates via
4897 C<maybe_tainted> if results are untrustworthy (often due to the use of
4898 locales).
4899
4900 XXX Except that it maybe_tainted is never assigned to.
4901
4902 Usually used via one of its frontends C<sv_vcatpvf> and C<sv_vcatpvf_mg>.
4903
4904         void    sv_vcatpvfn(SV* sv, const char* pat, STRLEN patlen, va_list* args, SV** svargs, I32 svmax, bool *maybe_tainted)
4905
4906 =for hackers
4907 Found in file sv.c
4908
4909 =item sv_vcatpvf_mg
4910
4911 Like C<sv_vcatpvf>, but also handles 'set' magic.
4912
4913 Usually used via its frontend C<sv_catpvf_mg>.
4914
4915         void    sv_vcatpvf_mg(SV* sv, const char* pat, va_list* args)
4916
4917 =for hackers
4918 Found in file sv.c
4919
4920 =item sv_vsetpvf
4921
4922 Works like C<sv_vcatpvf> but copies the text into the SV instead of
4923 appending it.  Does not handle 'set' magic.  See C<sv_vsetpvf_mg>.
4924
4925 Usually used via its frontend C<sv_setpvf>.
4926
4927         void    sv_vsetpvf(SV* sv, const char* pat, va_list* args)
4928
4929 =for hackers
4930 Found in file sv.c
4931
4932 =item sv_vsetpvfn
4933
4934 Works like C<sv_vcatpvfn> but copies the text into the SV instead of
4935 appending it.
4936
4937 Usually used via one of its frontends C<sv_vsetpvf> and C<sv_vsetpvf_mg>.
4938
4939         void    sv_vsetpvfn(SV* sv, const char* pat, STRLEN patlen, va_list* args, SV** svargs, I32 svmax, bool *maybe_tainted)
4940
4941 =for hackers
4942 Found in file sv.c
4943
4944 =item sv_vsetpvf_mg
4945
4946 Like C<sv_vsetpvf>, but also handles 'set' magic.
4947
4948 Usually used via its frontend C<sv_setpvf_mg>.
4949
4950         void    sv_vsetpvf_mg(SV* sv, const char* pat, va_list* args)
4951
4952 =for hackers
4953 Found in file sv.c
4954
4955
4956 =back
4957
4958 =head1 Unicode Support
4959
4960 =over 8
4961
4962 =item bytes_from_utf8
4963
4964 Converts a string C<s> of length C<len> from UTF-8 into byte encoding.
4965 Unlike C<utf8_to_bytes> but like C<bytes_to_utf8>, returns a pointer to
4966 the newly-created string, and updates C<len> to contain the new
4967 length.  Returns the original string if no conversion occurs, C<len>
4968 is unchanged. Do nothing if C<is_utf8> points to 0. Sets C<is_utf8> to
4969 0 if C<s> is converted or contains all 7bit characters.
4970
4971 NOTE: this function is experimental and may change or be
4972 removed without notice.
4973
4974         U8*     bytes_from_utf8(U8 *s, STRLEN *len, bool *is_utf8)
4975
4976 =for hackers
4977 Found in file utf8.c
4978
4979 =item bytes_to_utf8
4980
4981 Converts a string C<s> of length C<len> from ASCII into UTF-8 encoding.
4982 Returns a pointer to the newly-created string, and sets C<len> to
4983 reflect the new length.
4984
4985 If you want to convert to UTF-8 from other encodings than ASCII,
4986 see sv_recode_to_utf8().
4987
4988 NOTE: this function is experimental and may change or be
4989 removed without notice.
4990
4991         U8*     bytes_to_utf8(U8 *s, STRLEN *len)
4992
4993 =for hackers
4994 Found in file utf8.c
4995
4996 =item ibcmp_utf8
4997
4998 Return true if the strings s1 and s2 differ case-insensitively, false
4999 if not (if they are equal case-insensitively).  If u1 is true, the
5000 string s1 is assumed to be in UTF-8-encoded Unicode.  If u2 is true,
5001 the string s2 is assumed to be in UTF-8-encoded Unicode.  If u1 or u2
5002 are false, the respective string is assumed to be in native 8-bit
5003 encoding.
5004
5005 If the pe1 and pe2 are non-NULL, the scanning pointers will be copied
5006 in there (they will point at the beginning of the I<next> character).
5007 If the pointers behind pe1 or pe2 are non-NULL, they are the end
5008 pointers beyond which scanning will not continue under any
5009 circumstances.  If the byte lengths l1 and l2 are non-zero, s1+l1 and
5010 s2+l2 will be used as goal end pointers that will also stop the scan,
5011 and which qualify towards defining a successful match: all the scans
5012 that define an explicit length must reach their goal pointers for
5013 a match to succeed).
5014
5015 For case-insensitiveness, the "casefolding" of Unicode is used
5016 instead of upper/lowercasing both the characters, see
5017 http://www.unicode.org/unicode/reports/tr21/ (Case Mappings).
5018
5019         I32     ibcmp_utf8(const char* a, char **pe1, UV l1, bool u1, const char* b, char **pe2, UV l2, bool u2)
5020
5021 =for hackers
5022 Found in file utf8.c
5023
5024 =item is_utf8_char
5025
5026 Tests if some arbitrary number of bytes begins in a valid UTF-8
5027 character.  Note that an INVARIANT (i.e. ASCII) character is a valid
5028 UTF-8 character.  The actual number of bytes in the UTF-8 character
5029 will be returned if it is valid, otherwise 0.
5030
5031         STRLEN  is_utf8_char(U8 *p)
5032
5033 =for hackers
5034 Found in file utf8.c
5035
5036 =item is_utf8_string
5037
5038 Returns true if first C<len> bytes of the given string form a valid
5039 UTF-8 string, false otherwise.  Note that 'a valid UTF-8 string' does
5040 not mean 'a string that contains code points above 0x7F encoded in UTF-8'
5041 because a valid ASCII string is a valid UTF-8 string.
5042
5043         bool    is_utf8_string(U8 *s, STRLEN len)
5044
5045 =for hackers
5046 Found in file utf8.c
5047
5048 =item is_utf8_string_loc
5049
5050 Like is_ut8_string but store the location of the failure in
5051 the last argument.
5052
5053         bool    is_utf8_string_loc(U8 *s, STRLEN len, U8 **p)
5054
5055 =for hackers
5056 Found in file utf8.c
5057
5058 =item pv_uni_display
5059
5060 Build to the scalar dsv a displayable version of the string spv,
5061 length len, the displayable version being at most pvlim bytes long
5062 (if longer, the rest is truncated and "..." will be appended).
5063
5064 The flags argument can have UNI_DISPLAY_ISPRINT set to display
5065 isPRINT()able characters as themselves, UNI_DISPLAY_BACKSLASH
5066 to display the \\[nrfta\\] as the backslashed versions (like '\n')
5067 (UNI_DISPLAY_BACKSLASH is preferred over UNI_DISPLAY_ISPRINT for \\).
5068 UNI_DISPLAY_QQ (and its alias UNI_DISPLAY_REGEX) have both
5069 UNI_DISPLAY_BACKSLASH and UNI_DISPLAY_ISPRINT turned on.
5070
5071 The pointer to the PV of the dsv is returned.
5072
5073         char*   pv_uni_display(SV *dsv, U8 *spv, STRLEN len, STRLEN pvlim, UV flags)
5074
5075 =for hackers
5076 Found in file utf8.c
5077
5078 =item sv_cat_decode
5079
5080 The encoding is assumed to be an Encode object, the PV of the ssv is
5081 assumed to be octets in that encoding and decoding the input starts
5082 from the position which (PV + *offset) pointed to.  The dsv will be
5083 concatenated the decoded UTF-8 string from ssv.  Decoding will terminate
5084 when the string tstr appears in decoding output or the input ends on
5085 the PV of the ssv. The value which the offset points will be modified
5086 to the last input position on the ssv.
5087
5088 Returns TRUE if the terminator was found, else returns FALSE.
5089
5090         bool    sv_cat_decode(SV* dsv, SV *encoding, SV *ssv, int *offset, char* tstr, int tlen)
5091
5092 =for hackers
5093 Found in file sv.c
5094
5095 =item sv_recode_to_utf8
5096
5097 The encoding is assumed to be an Encode object, on entry the PV
5098 of the sv is assumed to be octets in that encoding, and the sv
5099 will be converted into Unicode (and UTF-8).
5100
5101 If the sv already is UTF-8 (or if it is not POK), or if the encoding
5102 is not a reference, nothing is done to the sv.  If the encoding is not
5103 an C<Encode::XS> Encoding object, bad things will happen.
5104 (See F<lib/encoding.pm> and L<Encode>).
5105
5106 The PV of the sv is returned.
5107
5108         char*   sv_recode_to_utf8(SV* sv, SV *encoding)
5109
5110 =for hackers
5111 Found in file sv.c
5112
5113 =item sv_uni_display
5114
5115 Build to the scalar dsv a displayable version of the scalar sv,
5116 the displayable version being at most pvlim bytes long
5117 (if longer, the rest is truncated and "..." will be appended).
5118
5119 The flags argument is as in pv_uni_display().
5120
5121 The pointer to the PV of the dsv is returned.
5122
5123         char*   sv_uni_display(SV *dsv, SV *ssv, STRLEN pvlim, UV flags)
5124
5125 =for hackers
5126 Found in file utf8.c
5127
5128 =item to_utf8_case
5129
5130 The "p" contains the pointer to the UTF-8 string encoding
5131 the character that is being converted.
5132
5133 The "ustrp" is a pointer to the character buffer to put the
5134 conversion result to.  The "lenp" is a pointer to the length
5135 of the result.
5136
5137 The "swashp" is a pointer to the swash to use.
5138
5139 Both the special and normal mappings are stored lib/unicore/To/Foo.pl,
5140 and loaded by SWASHGET, using lib/utf8_heavy.pl.  The special (usually,
5141 but not always, a multicharacter mapping), is tried first.
5142
5143 The "special" is a string like "utf8::ToSpecLower", which means the
5144 hash %utf8::ToSpecLower.  The access to the hash is through
5145 Perl_to_utf8_case().
5146
5147 The "normal" is a string like "ToLower" which means the swash
5148 %utf8::ToLower.
5149
5150         UV      to_utf8_case(U8 *p, U8* ustrp, STRLEN *lenp, SV **swash, char *normal, char *special)
5151
5152 =for hackers
5153 Found in file utf8.c
5154
5155 =item to_utf8_fold
5156
5157 Convert the UTF-8 encoded character at p to its foldcase version and
5158 store that in UTF-8 in ustrp and its length in bytes in lenp.  Note
5159 that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since the
5160 foldcase version may be longer than the original character (up to
5161 three characters).
5162
5163 The first character of the foldcased version is returned
5164 (but note, as explained above, that there may be more.)
5165
5166         UV      to_utf8_fold(U8 *p, U8* ustrp, STRLEN *lenp)
5167
5168 =for hackers
5169 Found in file utf8.c
5170
5171 =item to_utf8_lower
5172
5173 Convert the UTF-8 encoded character at p to its lowercase version and
5174 store that in UTF-8 in ustrp and its length in bytes in lenp.  Note
5175 that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since the
5176 lowercase version may be longer than the original character.
5177
5178 The first character of the lowercased version is returned
5179 (but note, as explained above, that there may be more.)
5180
5181         UV      to_utf8_lower(U8 *p, U8* ustrp, STRLEN *lenp)
5182
5183 =for hackers
5184 Found in file utf8.c
5185
5186 =item to_utf8_title
5187
5188 Convert the UTF-8 encoded character at p to its titlecase version and
5189 store that in UTF-8 in ustrp and its length in bytes in lenp.  Note
5190 that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since the
5191 titlecase version may be longer than the original character.
5192
5193 The first character of the titlecased version is returned
5194 (but note, as explained above, that there may be more.)
5195
5196         UV      to_utf8_title(U8 *p, U8* ustrp, STRLEN *lenp)
5197
5198 =for hackers
5199 Found in file utf8.c
5200
5201 =item to_utf8_upper
5202
5203 Convert the UTF-8 encoded character at p to its uppercase version and
5204 store that in UTF-8 in ustrp and its length in bytes in lenp.  Note
5205 that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since
5206 the uppercase version may be longer than the original character.
5207
5208 The first character of the uppercased version is returned
5209 (but note, as explained above, that there may be more.)
5210
5211         UV      to_utf8_upper(U8 *p, U8* ustrp, STRLEN *lenp)
5212
5213 =for hackers
5214 Found in file utf8.c
5215
5216 =item utf8n_to_uvchr
5217
5218 Returns the native character value of the first character in the string C<s>
5219 which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
5220 length, in bytes, of that character.
5221
5222 Allows length and flags to be passed to low level routine.
5223
5224         UV      utf8n_to_uvchr(U8 *s, STRLEN curlen, STRLEN* retlen, U32 flags)
5225
5226 =for hackers
5227 Found in file utf8.c
5228
5229 =item utf8n_to_uvuni
5230
5231 Bottom level UTF-8 decode routine.
5232 Returns the unicode code point value of the first character in the string C<s>
5233 which is assumed to be in UTF-8 encoding and no longer than C<curlen>;
5234 C<retlen> will be set to the length, in bytes, of that character.
5235
5236 If C<s> does not point to a well-formed UTF-8 character, the behaviour
5237 is dependent on the value of C<flags>: if it contains UTF8_CHECK_ONLY,
5238 it is assumed that the caller will raise a warning, and this function
5239 will silently just set C<retlen> to C<-1> and return zero.  If the
5240 C<flags> does not contain UTF8_CHECK_ONLY, warnings about
5241 malformations will be given, C<retlen> will be set to the expected
5242 length of the UTF-8 character in bytes, and zero will be returned.
5243
5244 The C<flags> can also contain various flags to allow deviations from
5245 the strict UTF-8 encoding (see F<utf8.h>).
5246
5247 Most code should use utf8_to_uvchr() rather than call this directly.
5248
5249         UV      utf8n_to_uvuni(U8 *s, STRLEN curlen, STRLEN* retlen, U32 flags)
5250
5251 =for hackers
5252 Found in file utf8.c
5253
5254 =item utf8_distance
5255
5256 Returns the number of UTF-8 characters between the UTF-8 pointers C<a>
5257 and C<b>.
5258
5259 WARNING: use only if you *know* that the pointers point inside the
5260 same UTF-8 buffer.
5261
5262         IV      utf8_distance(U8 *a, U8 *b)
5263
5264 =for hackers
5265 Found in file utf8.c
5266
5267 =item utf8_hop
5268
5269 Return the UTF-8 pointer C<s> displaced by C<off> characters, either
5270 forward or backward.
5271
5272 WARNING: do not use the following unless you *know* C<off> is within
5273 the UTF-8 data pointed to by C<s> *and* that on entry C<s> is aligned
5274 on the first byte of character or just after the last byte of a character.
5275
5276         U8*     utf8_hop(U8 *s, I32 off)
5277
5278 =for hackers
5279 Found in file utf8.c
5280
5281 =item utf8_length
5282
5283 Return the length of the UTF-8 char encoded string C<s> in characters.
5284 Stops at C<e> (inclusive).  If C<e E<lt> s> or if the scan would end
5285 up past C<e>, croaks.
5286
5287         STRLEN  utf8_length(U8* s, U8 *e)
5288
5289 =for hackers
5290 Found in file utf8.c
5291
5292 =item utf8_to_bytes
5293
5294 Converts a string C<s> of length C<len> from UTF-8 into byte encoding.
5295 Unlike C<bytes_to_utf8>, this over-writes the original string, and
5296 updates len to contain the new length.
5297 Returns zero on failure, setting C<len> to -1.
5298
5299 NOTE: this function is experimental and may change or be
5300 removed without notice.
5301
5302         U8*     utf8_to_bytes(U8 *s, STRLEN *len)
5303
5304 =for hackers
5305 Found in file utf8.c
5306
5307 =item utf8_to_uvchr
5308
5309 Returns the native character value of the first character in the string C<s>
5310 which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
5311 length, in bytes, of that character.
5312
5313 If C<s> does not point to a well-formed UTF-8 character, zero is
5314 returned and retlen is set, if possible, to -1.
5315
5316         UV      utf8_to_uvchr(U8 *s, STRLEN* retlen)
5317
5318 =for hackers
5319 Found in file utf8.c
5320
5321 =item utf8_to_uvuni
5322
5323 Returns the Unicode code point of the first character in the string C<s>
5324 which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
5325 length, in bytes, of that character.
5326
5327 This function should only be used when returned UV is considered
5328 an index into the Unicode semantic tables (e.g. swashes).
5329
5330 If C<s> does not point to a well-formed UTF-8 character, zero is
5331 returned and retlen is set, if possible, to -1.
5332
5333         UV      utf8_to_uvuni(U8 *s, STRLEN* retlen)
5334
5335 =for hackers
5336 Found in file utf8.c
5337
5338 =item uvchr_to_utf8
5339
5340 Adds the UTF-8 representation of the Native codepoint C<uv> to the end
5341 of the string C<d>; C<d> should be have at least C<UTF8_MAXBYTES+1> free
5342 bytes available. The return value is the pointer to the byte after the
5343 end of the new character. In other words,
5344
5345     d = uvchr_to_utf8(d, uv);
5346
5347 is the recommended wide native character-aware way of saying
5348
5349     *(d++) = uv;
5350
5351         U8*     uvchr_to_utf8(U8 *d, UV uv)
5352
5353 =for hackers
5354 Found in file utf8.c
5355
5356 =item uvuni_to_utf8_flags
5357
5358 Adds the UTF-8 representation of the Unicode codepoint C<uv> to the end
5359 of the string C<d>; C<d> should be have at least C<UTF8_MAXBYTES+1> free
5360 bytes available. The return value is the pointer to the byte after the
5361 end of the new character. In other words,
5362
5363     d = uvuni_to_utf8_flags(d, uv, flags);
5364
5365 or, in most cases,
5366
5367     d = uvuni_to_utf8(d, uv);
5368
5369 (which is equivalent to)
5370
5371     d = uvuni_to_utf8_flags(d, uv, 0);
5372
5373 is the recommended Unicode-aware way of saying
5374
5375     *(d++) = uv;
5376
5377         U8*     uvuni_to_utf8_flags(U8 *d, UV uv, UV flags)
5378
5379 =for hackers
5380 Found in file utf8.c
5381
5382
5383 =back
5384
5385 =head1 Variables created by C<xsubpp> and C<xsubpp> internal functions
5386
5387 =over 8
5388
5389 =item ax
5390
5391 Variable which is setup by C<xsubpp> to indicate the stack base offset,
5392 used by the C<ST>, C<XSprePUSH> and C<XSRETURN> macros.  The C<dMARK> macro
5393 must be called prior to setup the C<MARK> variable.
5394
5395         I32     ax
5396
5397 =for hackers
5398 Found in file XSUB.h
5399
5400 =item CLASS
5401
5402 Variable which is setup by C<xsubpp> to indicate the 
5403 class name for a C++ XS constructor.  This is always a C<char*>.  See C<THIS>.
5404
5405         char*   CLASS
5406
5407 =for hackers
5408 Found in file XSUB.h
5409
5410 =item dAX
5411
5412 Sets up the C<ax> variable.
5413 This is usually handled automatically by C<xsubpp> by calling C<dXSARGS>.
5414
5415                 dAX;
5416
5417 =for hackers
5418 Found in file XSUB.h
5419
5420 =item dAXMARK
5421
5422 Sets up the C<ax> variable and stack marker variable C<mark>.
5423 This is usually handled automatically by C<xsubpp> by calling C<dXSARGS>.
5424
5425                 dAXMARK;
5426
5427 =for hackers
5428 Found in file XSUB.h
5429
5430 =item dITEMS
5431
5432 Sets up the C<items> variable.
5433 This is usually handled automatically by C<xsubpp> by calling C<dXSARGS>.
5434
5435                 dITEMS;
5436
5437 =for hackers
5438 Found in file XSUB.h
5439
5440 =item dXSARGS
5441
5442 Sets up stack and mark pointers for an XSUB, calling dSP and dMARK.
5443 Sets up the C<ax> and C<items> variables by calling C<dAX> and C<dITEMS>.
5444 This is usually handled automatically by C<xsubpp>.
5445
5446                 dXSARGS;
5447
5448 =for hackers
5449 Found in file XSUB.h
5450
5451 =item dXSI32
5452
5453 Sets up the C<ix> variable for an XSUB which has aliases.  This is usually
5454 handled automatically by C<xsubpp>.
5455
5456                 dXSI32;
5457
5458 =for hackers
5459 Found in file XSUB.h
5460
5461 =item items
5462
5463 Variable which is setup by C<xsubpp> to indicate the number of 
5464 items on the stack.  See L<perlxs/"Variable-length Parameter Lists">.
5465
5466         I32     items
5467
5468 =for hackers
5469 Found in file XSUB.h
5470
5471 =item ix
5472
5473 Variable which is setup by C<xsubpp> to indicate which of an 
5474 XSUB's aliases was used to invoke it.  See L<perlxs/"The ALIAS: Keyword">.
5475
5476         I32     ix
5477
5478 =for hackers
5479 Found in file XSUB.h
5480
5481 =item newXSproto
5482
5483 Used by C<xsubpp> to hook up XSUBs as Perl subs.  Adds Perl prototypes to
5484 the subs.
5485
5486 =for hackers
5487 Found in file XSUB.h
5488
5489 =item RETVAL
5490
5491 Variable which is setup by C<xsubpp> to hold the return value for an 
5492 XSUB. This is always the proper type for the XSUB. See 
5493 L<perlxs/"The RETVAL Variable">.
5494
5495         (whatever)      RETVAL
5496
5497 =for hackers
5498 Found in file XSUB.h
5499
5500 =item ST
5501
5502 Used to access elements on the XSUB's stack.
5503
5504         SV*     ST(int ix)
5505
5506 =for hackers
5507 Found in file XSUB.h
5508
5509 =item THIS
5510
5511 Variable which is setup by C<xsubpp> to designate the object in a C++ 
5512 XSUB.  This is always the proper type for the C++ object.  See C<CLASS> and 
5513 L<perlxs/"Using XS With C++">.
5514
5515         (whatever)      THIS
5516
5517 =for hackers
5518 Found in file XSUB.h
5519
5520 =item XS
5521
5522 Macro to declare an XSUB and its C parameter list.  This is handled by
5523 C<xsubpp>.
5524
5525 =for hackers
5526 Found in file XSUB.h
5527
5528 =item XS_VERSION
5529
5530 The version identifier for an XS module.  This is usually
5531 handled automatically by C<ExtUtils::MakeMaker>.  See C<XS_VERSION_BOOTCHECK>.
5532
5533 =for hackers
5534 Found in file XSUB.h
5535
5536 =item XS_VERSION_BOOTCHECK
5537
5538 Macro to verify that a PM module's $VERSION variable matches the XS
5539 module's C<XS_VERSION> variable.  This is usually handled automatically by
5540 C<xsubpp>.  See L<perlxs/"The VERSIONCHECK: Keyword">.
5541
5542                 XS_VERSION_BOOTCHECK;
5543
5544 =for hackers
5545 Found in file XSUB.h
5546
5547
5548 =back
5549
5550 =head1 Warning and Dieing
5551
5552 =over 8
5553
5554 =item croak
5555
5556 This is the XSUB-writer's interface to Perl's C<die> function.
5557 Normally call this function the same way you call the C C<printf>
5558 function.  Calling C<croak> returns control directly to Perl,
5559 sidestepping the normal C order of execution. See C<warn>.
5560
5561 If you want to throw an exception object, assign the object to
5562 C<$@> and then pass C<Nullch> to croak():
5563
5564    errsv = get_sv("@", TRUE);
5565    sv_setsv(errsv, exception_object);
5566    croak(Nullch);
5567
5568         void    croak(const char* pat, ...)
5569
5570 =for hackers
5571 Found in file util.c
5572
5573 =item warn
5574
5575 This is the XSUB-writer's interface to Perl's C<warn> function.  Call this
5576 function the same way you call the C C<printf> function.  See C<croak>.
5577
5578         void    warn(const char* pat, ...)
5579
5580 =for hackers
5581 Found in file util.c
5582
5583
5584 =back
5585
5586 =head1 AUTHORS
5587
5588 Until May 1997, this document was maintained by Jeff Okamoto
5589 <okamoto@corp.hp.com>.  It is now maintained as part of Perl itself.
5590
5591 With lots of help and suggestions from Dean Roehrich, Malcolm Beattie,
5592 Andreas Koenig, Paul Hudson, Ilya Zakharevich, Paul Marquess, Neil
5593 Bowers, Matthew Green, Tim Bunce, Spider Boardman, Ulrich Pfeifer,
5594 Stephen McCamant, and Gurusamy Sarathy.
5595
5596 API Listing originally by Dean Roehrich <roehrich@cray.com>.
5597
5598 Updated to be autogenerated from comments in the source by Benjamin Stuhl.
5599
5600 =head1 SEE ALSO
5601
5602 perlguts(1), perlxs(1), perlxstut(1), perlintern(1)
5603