cc649f0e785a14eeb0ba7d43f004ccd388e32424
[p5sagit/p5-mst-13.2.git] / pod / perlapi.pod
1 -*- buffer-read-only: t -*-
2
3 !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!!
4 This file is built by autodoc.pl extracting documentation from the C source
5 files.
6
7 =head1 NAME
8
9 perlapi - autogenerated documentation for the perl public API
10
11 =head1 DESCRIPTION
12 X<Perl API> X<API> X<api>
13
14 This file contains the documentation of the perl public API generated by
15 embed.pl, specifically a listing of functions, macros, flags, and variables
16 that may be used by extension writers.  The interfaces of any functions that
17 are not listed here are subject to change without notice.  For this reason,
18 blindly using functions listed in proto.h is to be avoided when writing
19 extensions.
20
21 Note that all Perl API global variables must be referenced with the C<PL_>
22 prefix.  Some macros are provided for compatibility with the older,
23 unadorned names, but this support may be disabled in a future release.
24
25 The listing is alphabetical, case insensitive.
26
27
28 =head1 "Gimme" Values
29
30 =over 8
31
32 =item GIMME
33 X<GIMME>
34
35 A backward-compatible version of C<GIMME_V> which can only return
36 C<G_SCALAR> or C<G_ARRAY>; in a void context, it returns C<G_SCALAR>.
37 Deprecated.  Use C<GIMME_V> instead.
38
39         U32     GIMME
40
41 =for hackers
42 Found in file op.h
43
44 =item GIMME_V
45 X<GIMME_V>
46
47 The XSUB-writer's equivalent to Perl's C<wantarray>.  Returns C<G_VOID>,
48 C<G_SCALAR> or C<G_ARRAY> for void, scalar or list context,
49 respectively.
50
51         U32     GIMME_V
52
53 =for hackers
54 Found in file op.h
55
56 =item G_ARRAY
57 X<G_ARRAY>
58
59 Used to indicate list context.  See C<GIMME_V>, C<GIMME> and
60 L<perlcall>.
61
62 =for hackers
63 Found in file cop.h
64
65 =item G_DISCARD
66 X<G_DISCARD>
67
68 Indicates that arguments returned from a callback should be discarded.  See
69 L<perlcall>.
70
71 =for hackers
72 Found in file cop.h
73
74 =item G_EVAL
75 X<G_EVAL>
76
77 Used to force a Perl C<eval> wrapper around a callback.  See
78 L<perlcall>.
79
80 =for hackers
81 Found in file cop.h
82
83 =item G_NOARGS
84 X<G_NOARGS>
85
86 Indicates that no arguments are being sent to a callback.  See
87 L<perlcall>.
88
89 =for hackers
90 Found in file cop.h
91
92 =item G_SCALAR
93 X<G_SCALAR>
94
95 Used to indicate scalar context.  See C<GIMME_V>, C<GIMME>, and
96 L<perlcall>.
97
98 =for hackers
99 Found in file cop.h
100
101 =item G_VOID
102 X<G_VOID>
103
104 Used to indicate void context.  See C<GIMME_V> and L<perlcall>.
105
106 =for hackers
107 Found in file cop.h
108
109
110 =back
111
112 =head1 Array Manipulation Functions
113
114 =over 8
115
116 =item AvFILL
117 X<AvFILL>
118
119 Same as C<av_len()>.  Deprecated, use C<av_len()> instead.
120
121         int     AvFILL(AV* av)
122
123 =for hackers
124 Found in file av.h
125
126 =item av_clear
127 X<av_clear>
128
129 Clears an array, making it empty.  Does not free the memory used by the
130 array itself.
131
132         void    av_clear(AV* ar)
133
134 =for hackers
135 Found in file av.c
136
137 =item av_create_and_push
138 X<av_create_and_push>
139
140 Push an SV onto the end of the array, creating the array if necessary.
141 A small internal helper function to remove a commonly duplicated idiom.
142
143 NOTE: this function is experimental and may change or be
144 removed without notice.
145
146         void    av_create_and_push(AV **const avp, SV *const val)
147
148 =for hackers
149 Found in file av.c
150
151 =item av_create_and_unshift_one
152 X<av_create_and_unshift_one>
153
154 Unshifts an SV onto the beginning of the array, creating the array if
155 necessary.
156 A small internal helper function to remove a commonly duplicated idiom.
157
158 NOTE: this function is experimental and may change or be
159 removed without notice.
160
161         SV**    av_create_and_unshift_one(AV **const avp, SV *const val)
162
163 =for hackers
164 Found in file av.c
165
166 =item av_delete
167 X<av_delete>
168
169 Deletes the element indexed by C<key> from the array.  Returns the
170 deleted element. If C<flags> equals C<G_DISCARD>, the element is freed
171 and null is returned.
172
173         SV*     av_delete(AV* ar, I32 key, I32 flags)
174
175 =for hackers
176 Found in file av.c
177
178 =item av_exists
179 X<av_exists>
180
181 Returns true if the element indexed by C<key> has been initialized.
182
183 This relies on the fact that uninitialized array elements are set to
184 C<&PL_sv_undef>.
185
186         bool    av_exists(AV* ar, I32 key)
187
188 =for hackers
189 Found in file av.c
190
191 =item av_extend
192 X<av_extend>
193
194 Pre-extend an array.  The C<key> is the index to which the array should be
195 extended.
196
197         void    av_extend(AV* ar, I32 key)
198
199 =for hackers
200 Found in file av.c
201
202 =item av_fetch
203 X<av_fetch>
204
205 Returns the SV at the specified index in the array.  The C<key> is the
206 index.  If C<lval> is set then the fetch will be part of a store.  Check
207 that the return value is non-null before dereferencing it to a C<SV*>.
208
209 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for
210 more information on how to use this function on tied arrays. 
211
212         SV**    av_fetch(AV* ar, I32 key, I32 lval)
213
214 =for hackers
215 Found in file av.c
216
217 =item av_fill
218 X<av_fill>
219
220 Set the highest index in the array to the given number, equivalent to
221 Perl's C<$#array = $fill;>.
222
223 The number of elements in the an array will be C<fill + 1> after
224 av_fill() returns.  If the array was previously shorter then the
225 additional elements appended are set to C<PL_sv_undef>.  If the array
226 was longer, then the excess elements are freed.  C<av_fill(av, -1)> is
227 the same as C<av_clear(av)>.
228
229         void    av_fill(AV* ar, I32 fill)
230
231 =for hackers
232 Found in file av.c
233
234 =item av_len
235 X<av_len>
236
237 Returns the highest index in the array.  The number of elements in the
238 array is C<av_len(av) + 1>.  Returns -1 if the array is empty.
239
240         I32     av_len(const AV* ar)
241
242 =for hackers
243 Found in file av.c
244
245 =item av_make
246 X<av_make>
247
248 Creates a new AV and populates it with a list of SVs.  The SVs are copied
249 into the array, so they may be freed after the call to av_make.  The new AV
250 will have a reference count of 1.
251
252         AV*     av_make(I32 size, SV** svp)
253
254 =for hackers
255 Found in file av.c
256
257 =item av_pop
258 X<av_pop>
259
260 Pops an SV off the end of the array.  Returns C<&PL_sv_undef> if the array
261 is empty.
262
263         SV*     av_pop(AV* ar)
264
265 =for hackers
266 Found in file av.c
267
268 =item av_push
269 X<av_push>
270
271 Pushes an SV onto the end of the array.  The array will grow automatically
272 to accommodate the addition.
273
274         void    av_push(AV* ar, SV* val)
275
276 =for hackers
277 Found in file av.c
278
279 =item av_shift
280 X<av_shift>
281
282 Shifts an SV off the beginning of the array.
283
284         SV*     av_shift(AV* ar)
285
286 =for hackers
287 Found in file av.c
288
289 =item av_store
290 X<av_store>
291
292 Stores an SV in an array.  The array index is specified as C<key>.  The
293 return value will be NULL if the operation failed or if the value did not
294 need to be actually stored within the array (as in the case of tied
295 arrays). Otherwise it can be dereferenced to get the original C<SV*>.  Note
296 that the caller is responsible for suitably incrementing the reference
297 count of C<val> before the call, and decrementing it if the function
298 returned NULL.
299
300 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for
301 more information on how to use this function on tied arrays.
302
303         SV**    av_store(AV* ar, I32 key, SV* val)
304
305 =for hackers
306 Found in file av.c
307
308 =item av_undef
309 X<av_undef>
310
311 Undefines the array.  Frees the memory used by the array itself.
312
313         void    av_undef(AV* ar)
314
315 =for hackers
316 Found in file av.c
317
318 =item av_unshift
319 X<av_unshift>
320
321 Unshift the given number of C<undef> values onto the beginning of the
322 array.  The array will grow automatically to accommodate the addition.  You
323 must then use C<av_store> to assign values to these new elements.
324
325         void    av_unshift(AV* ar, I32 num)
326
327 =for hackers
328 Found in file av.c
329
330 =item get_av
331 X<get_av>
332
333 Returns the AV of the specified Perl array.  If C<create> is set and the
334 Perl variable does not exist then it will be created.  If C<create> is not
335 set and the variable does not exist then NULL is returned.
336
337 NOTE: the perl_ form of this function is deprecated.
338
339         AV*     get_av(const char* name, I32 create)
340
341 =for hackers
342 Found in file perl.c
343
344 =item newAV
345 X<newAV>
346
347 Creates a new AV.  The reference count is set to 1.
348
349         AV*     newAV()
350
351 =for hackers
352 Found in file av.c
353
354 =item sortsv
355 X<sortsv>
356
357 Sort an array. Here is an example:
358
359     sortsv(AvARRAY(av), av_len(av)+1, Perl_sv_cmp_locale);
360
361 Currently this always uses mergesort. See sortsv_flags for a more
362 flexible routine.
363
364         void    sortsv(SV** array, size_t num_elts, SVCOMPARE_t cmp)
365
366 =for hackers
367 Found in file pp_sort.c
368
369 =item sortsv_flags
370 X<sortsv_flags>
371
372 Sort an array, with various options.
373
374         void    sortsv_flags(SV** array, size_t num_elts, SVCOMPARE_t cmp, U32 flags)
375
376 =for hackers
377 Found in file pp_sort.c
378
379
380 =back
381
382 =head1 Callback Functions
383
384 =over 8
385
386 =item call_argv
387 X<call_argv>
388
389 Performs a callback to the specified Perl sub.  See L<perlcall>.
390
391 NOTE: the perl_ form of this function is deprecated.
392
393         I32     call_argv(const char* sub_name, I32 flags, char** argv)
394
395 =for hackers
396 Found in file perl.c
397
398 =item call_method
399 X<call_method>
400
401 Performs a callback to the specified Perl method.  The blessed object must
402 be on the stack.  See L<perlcall>.
403
404 NOTE: the perl_ form of this function is deprecated.
405
406         I32     call_method(const char* methname, I32 flags)
407
408 =for hackers
409 Found in file perl.c
410
411 =item call_pv
412 X<call_pv>
413
414 Performs a callback to the specified Perl sub.  See L<perlcall>.
415
416 NOTE: the perl_ form of this function is deprecated.
417
418         I32     call_pv(const char* sub_name, I32 flags)
419
420 =for hackers
421 Found in file perl.c
422
423 =item call_sv
424 X<call_sv>
425
426 Performs a callback to the Perl sub whose name is in the SV.  See
427 L<perlcall>.
428
429 NOTE: the perl_ form of this function is deprecated.
430
431         I32     call_sv(SV* sv, I32 flags)
432
433 =for hackers
434 Found in file perl.c
435
436 =item ENTER
437 X<ENTER>
438
439 Opening bracket on a callback.  See C<LEAVE> and L<perlcall>.
440
441                 ENTER;
442
443 =for hackers
444 Found in file scope.h
445
446 =item eval_pv
447 X<eval_pv>
448
449 Tells Perl to C<eval> the given string and return an SV* result.
450
451 NOTE: the perl_ form of this function is deprecated.
452
453         SV*     eval_pv(const char* p, I32 croak_on_error)
454
455 =for hackers
456 Found in file perl.c
457
458 =item eval_sv
459 X<eval_sv>
460
461 Tells Perl to C<eval> the string in the SV.
462
463 NOTE: the perl_ form of this function is deprecated.
464
465         I32     eval_sv(SV* sv, I32 flags)
466
467 =for hackers
468 Found in file perl.c
469
470 =item FREETMPS
471 X<FREETMPS>
472
473 Closing bracket for temporaries on a callback.  See C<SAVETMPS> and
474 L<perlcall>.
475
476                 FREETMPS;
477
478 =for hackers
479 Found in file scope.h
480
481 =item LEAVE
482 X<LEAVE>
483
484 Closing bracket on a callback.  See C<ENTER> and L<perlcall>.
485
486                 LEAVE;
487
488 =for hackers
489 Found in file scope.h
490
491 =item SAVETMPS
492 X<SAVETMPS>
493
494 Opening bracket for temporaries on a callback.  See C<FREETMPS> and
495 L<perlcall>.
496
497                 SAVETMPS;
498
499 =for hackers
500 Found in file scope.h
501
502
503 =back
504
505 =head1 Character classes
506
507 =over 8
508
509 =item isALNUM
510 X<isALNUM>
511
512 Returns a boolean indicating whether the C C<char> is an ASCII alphanumeric
513 character (including underscore) or digit.
514
515         bool    isALNUM(char ch)
516
517 =for hackers
518 Found in file handy.h
519
520 =item isALPHA
521 X<isALPHA>
522
523 Returns a boolean indicating whether the C C<char> is an ASCII alphabetic
524 character.
525
526         bool    isALPHA(char ch)
527
528 =for hackers
529 Found in file handy.h
530
531 =item isDIGIT
532 X<isDIGIT>
533
534 Returns a boolean indicating whether the C C<char> is an ASCII
535 digit.
536
537         bool    isDIGIT(char ch)
538
539 =for hackers
540 Found in file handy.h
541
542 =item isLOWER
543 X<isLOWER>
544
545 Returns a boolean indicating whether the C C<char> is a lowercase
546 character.
547
548         bool    isLOWER(char ch)
549
550 =for hackers
551 Found in file handy.h
552
553 =item isSPACE
554 X<isSPACE>
555
556 Returns a boolean indicating whether the C C<char> is whitespace.
557
558         bool    isSPACE(char ch)
559
560 =for hackers
561 Found in file handy.h
562
563 =item isUPPER
564 X<isUPPER>
565
566 Returns a boolean indicating whether the C C<char> is an uppercase
567 character.
568
569         bool    isUPPER(char ch)
570
571 =for hackers
572 Found in file handy.h
573
574 =item toLOWER
575 X<toLOWER>
576
577 Converts the specified character to lowercase.
578
579         char    toLOWER(char ch)
580
581 =for hackers
582 Found in file handy.h
583
584 =item toUPPER
585 X<toUPPER>
586
587 Converts the specified character to uppercase.
588
589         char    toUPPER(char ch)
590
591 =for hackers
592 Found in file handy.h
593
594
595 =back
596
597 =head1 Cloning an interpreter
598
599 =over 8
600
601 =item perl_clone
602 X<perl_clone>
603
604 Create and return a new interpreter by cloning the current one.
605
606 perl_clone takes these flags as parameters:
607
608 CLONEf_COPY_STACKS - is used to, well, copy the stacks also,
609 without it we only clone the data and zero the stacks,
610 with it we copy the stacks and the new perl interpreter is
611 ready to run at the exact same point as the previous one.
612 The pseudo-fork code uses COPY_STACKS while the
613 threads->create doesn't.
614
615 CLONEf_KEEP_PTR_TABLE
616 perl_clone keeps a ptr_table with the pointer of the old
617 variable as a key and the new variable as a value,
618 this allows it to check if something has been cloned and not
619 clone it again but rather just use the value and increase the
620 refcount. If KEEP_PTR_TABLE is not set then perl_clone will kill
621 the ptr_table using the function
622 C<ptr_table_free(PL_ptr_table); PL_ptr_table = NULL;>,
623 reason to keep it around is if you want to dup some of your own
624 variable who are outside the graph perl scans, example of this
625 code is in threads.xs create
626
627 CLONEf_CLONE_HOST
628 This is a win32 thing, it is ignored on unix, it tells perls
629 win32host code (which is c++) to clone itself, this is needed on
630 win32 if you want to run two threads at the same time,
631 if you just want to do some stuff in a separate perl interpreter
632 and then throw it away and return to the original one,
633 you don't need to do anything.
634
635         PerlInterpreter*        perl_clone(PerlInterpreter* interp, UV flags)
636
637 =for hackers
638 Found in file sv.c
639
640
641 =back
642
643 =head1 CV Manipulation Functions
644
645 =over 8
646
647 =item CvSTASH
648 X<CvSTASH>
649
650 Returns the stash of the CV.
651
652         HV*     CvSTASH(CV* cv)
653
654 =for hackers
655 Found in file cv.h
656
657 =item get_cv
658 X<get_cv>
659
660 Uses C<strlen> to get the length of C<name>, then calls C<get_cvn_flags>.
661
662 NOTE: the perl_ form of this function is deprecated.
663
664         CV*     get_cv(const char* name, I32 flags)
665
666 =for hackers
667 Found in file perl.c
668
669 =item get_cvn_flags
670 X<get_cvn_flags>
671
672 Returns the CV of the specified Perl subroutine.  C<flags> are passed to
673 C<gv_fetchpvn_flags>. If C<GV_ADD> is set and the Perl subroutine does not
674 exist then it will be declared (which has the same effect as saying
675 C<sub name;>).  If C<GV_ADD> is not set and the subroutine does not exist
676 then NULL is returned.
677
678 NOTE: the perl_ form of this function is deprecated.
679
680         CV*     get_cvn_flags(const char* name, STRLEN len, I32 flags)
681
682 =for hackers
683 Found in file perl.c
684
685
686 =back
687
688 =head1 Embedding Functions
689
690 =over 8
691
692 =item cv_undef
693 X<cv_undef>
694
695 Clear out all the active components of a CV. This can happen either
696 by an explicit C<undef &foo>, or by the reference count going to zero.
697 In the former case, we keep the CvOUTSIDE pointer, so that any anonymous
698 children can still follow the full lexical scope chain.
699
700         void    cv_undef(CV* cv)
701
702 =for hackers
703 Found in file op.c
704
705 =item load_module
706 X<load_module>
707
708 Loads the module whose name is pointed to by the string part of name.
709 Note that the actual module name, not its filename, should be given.
710 Eg, "Foo::Bar" instead of "Foo/Bar.pm".  flags can be any of
711 PERL_LOADMOD_DENY, PERL_LOADMOD_NOIMPORT, or PERL_LOADMOD_IMPORT_OPS
712 (or 0 for no flags). ver, if specified, provides version semantics
713 similar to C<use Foo::Bar VERSION>.  The optional trailing SV*
714 arguments can be used to specify arguments to the module's import()
715 method, similar to C<use Foo::Bar VERSION LIST>.
716
717         void    load_module(U32 flags, SV* name, SV* ver, ...)
718
719 =for hackers
720 Found in file op.c
721
722 =item nothreadhook
723 X<nothreadhook>
724
725 Stub that provides thread hook for perl_destruct when there are
726 no threads.
727
728         int     nothreadhook()
729
730 =for hackers
731 Found in file perl.c
732
733 =item perl_alloc
734 X<perl_alloc>
735
736 Allocates a new Perl interpreter.  See L<perlembed>.
737
738         PerlInterpreter*        perl_alloc()
739
740 =for hackers
741 Found in file perl.c
742
743 =item perl_construct
744 X<perl_construct>
745
746 Initializes a new Perl interpreter.  See L<perlembed>.
747
748         void    perl_construct(PerlInterpreter* interp)
749
750 =for hackers
751 Found in file perl.c
752
753 =item perl_destruct
754 X<perl_destruct>
755
756 Shuts down a Perl interpreter.  See L<perlembed>.
757
758         int     perl_destruct(PerlInterpreter* interp)
759
760 =for hackers
761 Found in file perl.c
762
763 =item perl_free
764 X<perl_free>
765
766 Releases a Perl interpreter.  See L<perlembed>.
767
768         void    perl_free(PerlInterpreter* interp)
769
770 =for hackers
771 Found in file perl.c
772
773 =item perl_parse
774 X<perl_parse>
775
776 Tells a Perl interpreter to parse a Perl script.  See L<perlembed>.
777
778         int     perl_parse(PerlInterpreter* interp, XSINIT_t xsinit, int argc, char** argv, char** env)
779
780 =for hackers
781 Found in file perl.c
782
783 =item perl_run
784 X<perl_run>
785
786 Tells a Perl interpreter to run.  See L<perlembed>.
787
788         int     perl_run(PerlInterpreter* interp)
789
790 =for hackers
791 Found in file perl.c
792
793 =item require_pv
794 X<require_pv>
795
796 Tells Perl to C<require> the file named by the string argument.  It is
797 analogous to the Perl code C<eval "require '$file'">.  It's even
798 implemented that way; consider using load_module instead.
799
800 NOTE: the perl_ form of this function is deprecated.
801
802         void    require_pv(const char* pv)
803
804 =for hackers
805 Found in file perl.c
806
807
808 =back
809
810 =head1 Functions in file dump.c
811
812
813 =over 8
814
815 =item pv_display
816 X<pv_display>
817
818   char *pv_display(SV *dsv, const char *pv, STRLEN cur, STRLEN len,
819                    STRLEN pvlim, U32 flags)
820
821 Similar to
822
823   pv_escape(dsv,pv,cur,pvlim,PERL_PV_ESCAPE_QUOTE);
824
825 except that an additional "\0" will be appended to the string when
826 len > cur and pv[cur] is "\0".
827
828 Note that the final string may be up to 7 chars longer than pvlim.
829
830         char*   pv_display(SV *dsv, const char *pv, STRLEN cur, STRLEN len, STRLEN pvlim)
831
832 =for hackers
833 Found in file dump.c
834
835 =item pv_escape
836 X<pv_escape>
837
838                |const STRLEN count|const STRLEN max
839                |STRLEN const *escaped, const U32 flags
840
841 Escapes at most the first "count" chars of pv and puts the results into
842 dsv such that the size of the escaped string will not exceed "max" chars
843 and will not contain any incomplete escape sequences.
844
845 If flags contains PERL_PV_ESCAPE_QUOTE then any double quotes in the string
846 will also be escaped.
847
848 Normally the SV will be cleared before the escaped string is prepared,
849 but when PERL_PV_ESCAPE_NOCLEAR is set this will not occur.
850
851 If PERL_PV_ESCAPE_UNI is set then the input string is treated as unicode,
852 if PERL_PV_ESCAPE_UNI_DETECT is set then the input string is scanned
853 using C<is_utf8_string()> to determine if it is unicode.
854
855 If PERL_PV_ESCAPE_ALL is set then all input chars will be output
856 using C<\x01F1> style escapes, otherwise only chars above 255 will be
857 escaped using this style, other non printable chars will use octal or
858 common escaped patterns like C<\n>. If PERL_PV_ESCAPE_NOBACKSLASH
859 then all chars below 255 will be treated as printable and 
860 will be output as literals.
861
862 If PERL_PV_ESCAPE_FIRSTCHAR is set then only the first char of the
863 string will be escaped, regardles of max. If the string is utf8 and 
864 the chars value is >255 then it will be returned as a plain hex 
865 sequence. Thus the output will either be a single char, 
866 an octal escape sequence, a special escape like C<\n> or a 3 or 
867 more digit hex value. 
868
869 If PERL_PV_ESCAPE_RE is set then the escape char used will be a '%' and
870 not a '\\'. This is because regexes very often contain backslashed
871 sequences, whereas '%' is not a particularly common character in patterns.
872
873 Returns a pointer to the escaped text as held by dsv.
874
875 NOTE: the perl_ form of this function is deprecated.
876
877         char*   pv_escape(SV *dsv, char const * const str, const STRLEN count, const STRLEN max, STRLEN * const escaped, const U32 flags)
878
879 =for hackers
880 Found in file dump.c
881
882 =item pv_pretty
883 X<pv_pretty>
884
885            |const STRLEN count|const STRLEN max\
886            |const char const *start_color| const char const *end_color\
887            |const U32 flags
888
889 Converts a string into something presentable, handling escaping via
890 pv_escape() and supporting quoting and elipses. 
891
892 If the PERL_PV_PRETTY_QUOTE flag is set then the result will be 
893 double quoted with any double quotes in the string escaped. Otherwise
894 if the PERL_PV_PRETTY_LTGT flag is set then the result be wrapped in
895 angle brackets. 
896            
897 If the PERL_PV_PRETTY_ELIPSES flag is set and not all characters in
898 string were output then an elipses C<...> will be appended to the 
899 string. Note that this happens AFTER it has been quoted.
900            
901 If start_color is non-null then it will be inserted after the opening
902 quote (if there is one) but before the escaped text. If end_color
903 is non-null then it will be inserted after the escaped text but before
904 any quotes or elipses.
905
906 Returns a pointer to the prettified text as held by dsv.
907            
908 NOTE: the perl_ form of this function is deprecated.
909
910         char*   pv_pretty(SV *dsv, char const * const str, const STRLEN count, const STRLEN max, char const * const start_color, char const * const end_color, const U32 flags)
911
912 =for hackers
913 Found in file dump.c
914
915
916 =back
917
918 =head1 Functions in file mathoms.c
919
920
921 =over 8
922
923 =item gv_fetchmethod
924 X<gv_fetchmethod>
925
926 See L<gv_fetchmethod_autoload>.
927
928         GV*     gv_fetchmethod(HV* stash, const char* name)
929
930 =for hackers
931 Found in file mathoms.c
932
933 =item pack_cat
934 X<pack_cat>
935
936 The engine implementing pack() Perl function. Note: parameters next_in_list and
937 flags are not used. This call should not be used; use packlist instead.
938
939         void    pack_cat(SV *cat, const char *pat, const char *patend, SV **beglist, SV **endlist, SV ***next_in_list, U32 flags)
940
941 =for hackers
942 Found in file mathoms.c
943
944 =item sv_2pvbyte_nolen
945 X<sv_2pvbyte_nolen>
946
947 Return a pointer to the byte-encoded representation of the SV.
948 May cause the SV to be downgraded from UTF-8 as a side-effect.
949
950 Usually accessed via the C<SvPVbyte_nolen> macro.
951
952         char*   sv_2pvbyte_nolen(SV* sv)
953
954 =for hackers
955 Found in file mathoms.c
956
957 =item sv_2pvutf8_nolen
958 X<sv_2pvutf8_nolen>
959
960 Return a pointer to the UTF-8-encoded representation of the SV.
961 May cause the SV to be upgraded to UTF-8 as a side-effect.
962
963 Usually accessed via the C<SvPVutf8_nolen> macro.
964
965         char*   sv_2pvutf8_nolen(SV* sv)
966
967 =for hackers
968 Found in file mathoms.c
969
970 =item sv_2pv_nolen
971 X<sv_2pv_nolen>
972
973 Like C<sv_2pv()>, but doesn't return the length too. You should usually
974 use the macro wrapper C<SvPV_nolen(sv)> instead.
975         char*   sv_2pv_nolen(SV* sv)
976
977 =for hackers
978 Found in file mathoms.c
979
980 =item sv_catpvn_mg
981 X<sv_catpvn_mg>
982
983 Like C<sv_catpvn>, but also handles 'set' magic.
984
985         void    sv_catpvn_mg(SV *sv, const char *ptr, STRLEN len)
986
987 =for hackers
988 Found in file mathoms.c
989
990 =item sv_catsv_mg
991 X<sv_catsv_mg>
992
993 Like C<sv_catsv>, but also handles 'set' magic.
994
995         void    sv_catsv_mg(SV *dstr, SV *sstr)
996
997 =for hackers
998 Found in file mathoms.c
999
1000 =item sv_force_normal
1001 X<sv_force_normal>
1002
1003 Undo various types of fakery on an SV: if the PV is a shared string, make
1004 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
1005 an xpvmg. See also C<sv_force_normal_flags>.
1006
1007         void    sv_force_normal(SV *sv)
1008
1009 =for hackers
1010 Found in file mathoms.c
1011
1012 =item sv_iv
1013 X<sv_iv>
1014
1015 A private implementation of the C<SvIVx> macro for compilers which can't
1016 cope with complex macro expressions. Always use the macro instead.
1017
1018         IV      sv_iv(SV* sv)
1019
1020 =for hackers
1021 Found in file mathoms.c
1022
1023 =item sv_nolocking
1024 X<sv_nolocking>
1025
1026 Dummy routine which "locks" an SV when there is no locking module present.
1027 Exists to avoid test for a NULL function pointer and because it could
1028 potentially warn under some level of strict-ness.
1029
1030 "Superseded" by sv_nosharing().
1031
1032         void    sv_nolocking(SV *sv)
1033
1034 =for hackers
1035 Found in file mathoms.c
1036
1037 =item sv_nounlocking
1038 X<sv_nounlocking>
1039
1040 Dummy routine which "unlocks" an SV when there is no locking module present.
1041 Exists to avoid test for a NULL function pointer and because it could
1042 potentially warn under some level of strict-ness.
1043
1044 "Superseded" by sv_nosharing().
1045
1046         void    sv_nounlocking(SV *sv)
1047
1048 =for hackers
1049 Found in file mathoms.c
1050
1051 =item sv_nv
1052 X<sv_nv>
1053
1054 A private implementation of the C<SvNVx> macro for compilers which can't
1055 cope with complex macro expressions. Always use the macro instead.
1056
1057         NV      sv_nv(SV* sv)
1058
1059 =for hackers
1060 Found in file mathoms.c
1061
1062 =item sv_pv
1063 X<sv_pv>
1064
1065 Use the C<SvPV_nolen> macro instead
1066
1067         char*   sv_pv(SV *sv)
1068
1069 =for hackers
1070 Found in file mathoms.c
1071
1072 =item sv_pvbyte
1073 X<sv_pvbyte>
1074
1075 Use C<SvPVbyte_nolen> instead.
1076
1077         char*   sv_pvbyte(SV *sv)
1078
1079 =for hackers
1080 Found in file mathoms.c
1081
1082 =item sv_pvbyten
1083 X<sv_pvbyten>
1084
1085 A private implementation of the C<SvPVbyte> macro for compilers
1086 which can't cope with complex macro expressions. Always use the macro
1087 instead.
1088
1089         char*   sv_pvbyten(SV *sv, STRLEN *len)
1090
1091 =for hackers
1092 Found in file mathoms.c
1093
1094 =item sv_pvn
1095 X<sv_pvn>
1096
1097 A private implementation of the C<SvPV> macro for compilers which can't
1098 cope with complex macro expressions. Always use the macro instead.
1099
1100         char*   sv_pvn(SV *sv, STRLEN *len)
1101
1102 =for hackers
1103 Found in file mathoms.c
1104
1105 =item sv_pvutf8
1106 X<sv_pvutf8>
1107
1108 Use the C<SvPVutf8_nolen> macro instead
1109
1110         char*   sv_pvutf8(SV *sv)
1111
1112 =for hackers
1113 Found in file mathoms.c
1114
1115 =item sv_pvutf8n
1116 X<sv_pvutf8n>
1117
1118 A private implementation of the C<SvPVutf8> macro for compilers
1119 which can't cope with complex macro expressions. Always use the macro
1120 instead.
1121
1122         char*   sv_pvutf8n(SV *sv, STRLEN *len)
1123
1124 =for hackers
1125 Found in file mathoms.c
1126
1127 =item sv_taint
1128 X<sv_taint>
1129
1130 Taint an SV. Use C<SvTAINTED_on> instead.
1131         void    sv_taint(SV* sv)
1132
1133 =for hackers
1134 Found in file mathoms.c
1135
1136 =item sv_unref
1137 X<sv_unref>
1138
1139 Unsets the RV status of the SV, and decrements the reference count of
1140 whatever was being referenced by the RV.  This can almost be thought of
1141 as a reversal of C<newSVrv>.  This is C<sv_unref_flags> with the C<flag>
1142 being zero.  See C<SvROK_off>.
1143
1144         void    sv_unref(SV* sv)
1145
1146 =for hackers
1147 Found in file mathoms.c
1148
1149 =item sv_usepvn
1150 X<sv_usepvn>
1151
1152 Tells an SV to use C<ptr> to find its string value. Implemented by
1153 calling C<sv_usepvn_flags> with C<flags> of 0, hence does not handle 'set'
1154 magic. See C<sv_usepvn_flags>.
1155
1156         void    sv_usepvn(SV* sv, char* ptr, STRLEN len)
1157
1158 =for hackers
1159 Found in file mathoms.c
1160
1161 =item sv_usepvn_mg
1162 X<sv_usepvn_mg>
1163
1164 Like C<sv_usepvn>, but also handles 'set' magic.
1165
1166         void    sv_usepvn_mg(SV *sv, char *ptr, STRLEN len)
1167
1168 =for hackers
1169 Found in file mathoms.c
1170
1171 =item sv_uv
1172 X<sv_uv>
1173
1174 A private implementation of the C<SvUVx> macro for compilers which can't
1175 cope with complex macro expressions. Always use the macro instead.
1176
1177         UV      sv_uv(SV* sv)
1178
1179 =for hackers
1180 Found in file mathoms.c
1181
1182 =item unpack_str
1183 X<unpack_str>
1184
1185 The engine implementing unpack() Perl function. Note: parameters strbeg, new_s
1186 and ocnt are not used. This call should not be used, use unpackstring instead.
1187
1188         I32     unpack_str(const char *pat, const char *patend, const char *s, const char *strbeg, const char *strend, char **new_s, I32 ocnt, U32 flags)
1189
1190 =for hackers
1191 Found in file mathoms.c
1192
1193
1194 =back
1195
1196 =head1 Functions in file pp_pack.c
1197
1198
1199 =over 8
1200
1201 =item packlist
1202 X<packlist>
1203
1204 The engine implementing pack() Perl function.
1205
1206         void    packlist(SV *cat, const char *pat, const char *patend, SV **beglist, SV **endlist)
1207
1208 =for hackers
1209 Found in file pp_pack.c
1210
1211 =item unpackstring
1212 X<unpackstring>
1213
1214 The engine implementing unpack() Perl function. C<unpackstring> puts the
1215 extracted list items on the stack and returns the number of elements.
1216 Issue C<PUTBACK> before and C<SPAGAIN> after the call to this function.
1217
1218         I32     unpackstring(const char *pat, const char *patend, const char *s, const char *strend, U32 flags)
1219
1220 =for hackers
1221 Found in file pp_pack.c
1222
1223
1224 =back
1225
1226 =head1 Global Variables
1227
1228 =over 8
1229
1230 =item PL_modglobal
1231 X<PL_modglobal>
1232
1233 C<PL_modglobal> is a general purpose, interpreter global HV for use by
1234 extensions that need to keep information on a per-interpreter basis.
1235 In a pinch, it can also be used as a symbol table for extensions
1236 to share data among each other.  It is a good idea to use keys
1237 prefixed by the package name of the extension that owns the data.
1238
1239         HV*     PL_modglobal
1240
1241 =for hackers
1242 Found in file intrpvar.h
1243
1244 =item PL_na
1245 X<PL_na>
1246
1247 A convenience variable which is typically used with C<SvPV> when one
1248 doesn't care about the length of the string.  It is usually more efficient
1249 to either declare a local variable and use that instead or to use the
1250 C<SvPV_nolen> macro.
1251
1252         STRLEN  PL_na
1253
1254 =for hackers
1255 Found in file thrdvar.h
1256
1257 =item PL_sv_no
1258 X<PL_sv_no>
1259
1260 This is the C<false> SV.  See C<PL_sv_yes>.  Always refer to this as
1261 C<&PL_sv_no>.
1262
1263         SV      PL_sv_no
1264
1265 =for hackers
1266 Found in file intrpvar.h
1267
1268 =item PL_sv_undef
1269 X<PL_sv_undef>
1270
1271 This is the C<undef> SV.  Always refer to this as C<&PL_sv_undef>.
1272
1273         SV      PL_sv_undef
1274
1275 =for hackers
1276 Found in file intrpvar.h
1277
1278 =item PL_sv_yes
1279 X<PL_sv_yes>
1280
1281 This is the C<true> SV.  See C<PL_sv_no>.  Always refer to this as
1282 C<&PL_sv_yes>.
1283
1284         SV      PL_sv_yes
1285
1286 =for hackers
1287 Found in file intrpvar.h
1288
1289
1290 =back
1291
1292 =head1 GV Functions
1293
1294 =over 8
1295
1296 =item GvSV
1297 X<GvSV>
1298
1299 Return the SV from the GV.
1300
1301         SV*     GvSV(GV* gv)
1302
1303 =for hackers
1304 Found in file gv.h
1305
1306 =item gv_const_sv
1307 X<gv_const_sv>
1308
1309 If C<gv> is a typeglob whose subroutine entry is a constant sub eligible for
1310 inlining, or C<gv> is a placeholder reference that would be promoted to such
1311 a typeglob, then returns the value returned by the sub.  Otherwise, returns
1312 NULL.
1313
1314         SV*     gv_const_sv(GV* gv)
1315
1316 =for hackers
1317 Found in file gv.c
1318
1319 =item gv_fetchmeth
1320 X<gv_fetchmeth>
1321
1322 Returns the glob with the given C<name> and a defined subroutine or
1323 C<NULL>.  The glob lives in the given C<stash>, or in the stashes
1324 accessible via @ISA and UNIVERSAL::.
1325
1326 The argument C<level> should be either 0 or -1.  If C<level==0>, as a
1327 side-effect creates a glob with the given C<name> in the given C<stash>
1328 which in the case of success contains an alias for the subroutine, and sets
1329 up caching info for this glob.
1330
1331 This function grants C<"SUPER"> token as a postfix of the stash name. The
1332 GV returned from C<gv_fetchmeth> may be a method cache entry, which is not
1333 visible to Perl code.  So when calling C<call_sv>, you should not use
1334 the GV directly; instead, you should use the method's CV, which can be
1335 obtained from the GV with the C<GvCV> macro.
1336
1337         GV*     gv_fetchmeth(HV* stash, const char* name, STRLEN len, I32 level)
1338
1339 =for hackers
1340 Found in file gv.c
1341
1342 =item gv_fetchmethod_autoload
1343 X<gv_fetchmethod_autoload>
1344
1345 Returns the glob which contains the subroutine to call to invoke the method
1346 on the C<stash>.  In fact in the presence of autoloading this may be the
1347 glob for "AUTOLOAD".  In this case the corresponding variable $AUTOLOAD is
1348 already setup.
1349
1350 The third parameter of C<gv_fetchmethod_autoload> determines whether
1351 AUTOLOAD lookup is performed if the given method is not present: non-zero
1352 means yes, look for AUTOLOAD; zero means no, don't look for AUTOLOAD.
1353 Calling C<gv_fetchmethod> is equivalent to calling C<gv_fetchmethod_autoload>
1354 with a non-zero C<autoload> parameter.
1355
1356 These functions grant C<"SUPER"> token as a prefix of the method name. Note
1357 that if you want to keep the returned glob for a long time, you need to
1358 check for it being "AUTOLOAD", since at the later time the call may load a
1359 different subroutine due to $AUTOLOAD changing its value. Use the glob
1360 created via a side effect to do this.
1361
1362 These functions have the same side-effects and as C<gv_fetchmeth> with
1363 C<level==0>.  C<name> should be writable if contains C<':'> or C<'
1364 ''>. The warning against passing the GV returned by C<gv_fetchmeth> to
1365 C<call_sv> apply equally to these functions.
1366
1367         GV*     gv_fetchmethod_autoload(HV* stash, const char* name, I32 autoload)
1368
1369 =for hackers
1370 Found in file gv.c
1371
1372 =item gv_fetchmeth_autoload
1373 X<gv_fetchmeth_autoload>
1374
1375 Same as gv_fetchmeth(), but looks for autoloaded subroutines too.
1376 Returns a glob for the subroutine.
1377
1378 For an autoloaded subroutine without a GV, will create a GV even
1379 if C<level < 0>.  For an autoloaded subroutine without a stub, GvCV()
1380 of the result may be zero.
1381
1382         GV*     gv_fetchmeth_autoload(HV* stash, const char* name, STRLEN len, I32 level)
1383
1384 =for hackers
1385 Found in file gv.c
1386
1387 =item gv_stashpv
1388 X<gv_stashpv>
1389
1390 Returns a pointer to the stash for a specified package.  Uses C<strlen> to
1391 determine the length of C<name>, then calls C<gv_stashpvn()>.
1392
1393         HV*     gv_stashpv(const char* name, I32 flags)
1394
1395 =for hackers
1396 Found in file gv.c
1397
1398 =item gv_stashpvn
1399 X<gv_stashpvn>
1400
1401 Returns a pointer to the stash for a specified package.  The C<namelen>
1402 parameter indicates the length of the C<name>, in bytes.  C<flags> is passed
1403 to C<gv_fetchpvn_flags()>, so if set to C<GV_ADD> then the package will be
1404 created if it does not already exist.  If the package does not exist and
1405 C<flags> is 0 (or any other setting that does not create packages) then NULL
1406 is returned.
1407
1408
1409         HV*     gv_stashpvn(const char* name, U32 namelen, I32 flags)
1410
1411 =for hackers
1412 Found in file gv.c
1413
1414 =item gv_stashpvs
1415 X<gv_stashpvs>
1416
1417 Like C<gv_stashpvn>, but takes a literal string instead of a string/length pair.
1418
1419         HV*     gv_stashpvs(const char* name, I32 create)
1420
1421 =for hackers
1422 Found in file handy.h
1423
1424 =item gv_stashsv
1425 X<gv_stashsv>
1426
1427 Returns a pointer to the stash for a specified package.  See C<gv_stashpvn>.
1428
1429         HV*     gv_stashsv(SV* sv, I32 flags)
1430
1431 =for hackers
1432 Found in file gv.c
1433
1434
1435 =back
1436
1437 =head1 Handy Values
1438
1439 =over 8
1440
1441 =item Nullav
1442 X<Nullav>
1443
1444 Null AV pointer.
1445
1446 =for hackers
1447 Found in file av.h
1448
1449 =item Nullch
1450 X<Nullch>
1451
1452 Null character pointer.
1453
1454 =for hackers
1455 Found in file handy.h
1456
1457 =item Nullcv
1458 X<Nullcv>
1459
1460 Null CV pointer.
1461
1462 =for hackers
1463 Found in file cv.h
1464
1465 =item Nullhv
1466 X<Nullhv>
1467
1468 Null HV pointer.
1469
1470 =for hackers
1471 Found in file hv.h
1472
1473 =item Nullsv
1474 X<Nullsv>
1475
1476 Null SV pointer.
1477
1478 =for hackers
1479 Found in file handy.h
1480
1481
1482 =back
1483
1484 =head1 Hash Manipulation Functions
1485
1486 =over 8
1487
1488 =item get_hv
1489 X<get_hv>
1490
1491 Returns the HV of the specified Perl hash.  If C<create> is set and the
1492 Perl variable does not exist then it will be created.  If C<create> is not
1493 set and the variable does not exist then NULL is returned.
1494
1495 NOTE: the perl_ form of this function is deprecated.
1496
1497         HV*     get_hv(const char* name, I32 create)
1498
1499 =for hackers
1500 Found in file perl.c
1501
1502 =item HEf_SVKEY
1503 X<HEf_SVKEY>
1504
1505 This flag, used in the length slot of hash entries and magic structures,
1506 specifies the structure contains an C<SV*> pointer where a C<char*> pointer
1507 is to be expected. (For information only--not to be used).
1508
1509 =for hackers
1510 Found in file hv.h
1511
1512 =item HeHASH
1513 X<HeHASH>
1514
1515 Returns the computed hash stored in the hash entry.
1516
1517         U32     HeHASH(HE* he)
1518
1519 =for hackers
1520 Found in file hv.h
1521
1522 =item HeKEY
1523 X<HeKEY>
1524
1525 Returns the actual pointer stored in the key slot of the hash entry. The
1526 pointer may be either C<char*> or C<SV*>, depending on the value of
1527 C<HeKLEN()>.  Can be assigned to.  The C<HePV()> or C<HeSVKEY()> macros are
1528 usually preferable for finding the value of a key.
1529
1530         void*   HeKEY(HE* he)
1531
1532 =for hackers
1533 Found in file hv.h
1534
1535 =item HeKLEN
1536 X<HeKLEN>
1537
1538 If this is negative, and amounts to C<HEf_SVKEY>, it indicates the entry
1539 holds an C<SV*> key.  Otherwise, holds the actual length of the key.  Can
1540 be assigned to. The C<HePV()> macro is usually preferable for finding key
1541 lengths.
1542
1543         STRLEN  HeKLEN(HE* he)
1544
1545 =for hackers
1546 Found in file hv.h
1547
1548 =item HePV
1549 X<HePV>
1550
1551 Returns the key slot of the hash entry as a C<char*> value, doing any
1552 necessary dereferencing of possibly C<SV*> keys.  The length of the string
1553 is placed in C<len> (this is a macro, so do I<not> use C<&len>).  If you do
1554 not care about what the length of the key is, you may use the global
1555 variable C<PL_na>, though this is rather less efficient than using a local
1556 variable.  Remember though, that hash keys in perl are free to contain
1557 embedded nulls, so using C<strlen()> or similar is not a good way to find
1558 the length of hash keys. This is very similar to the C<SvPV()> macro
1559 described elsewhere in this document.
1560
1561         char*   HePV(HE* he, STRLEN len)
1562
1563 =for hackers
1564 Found in file hv.h
1565
1566 =item HeSVKEY
1567 X<HeSVKEY>
1568
1569 Returns the key as an C<SV*>, or C<NULL> if the hash entry does not
1570 contain an C<SV*> key.
1571
1572         SV*     HeSVKEY(HE* he)
1573
1574 =for hackers
1575 Found in file hv.h
1576
1577 =item HeSVKEY_force
1578 X<HeSVKEY_force>
1579
1580 Returns the key as an C<SV*>.  Will create and return a temporary mortal
1581 C<SV*> if the hash entry contains only a C<char*> key.
1582
1583         SV*     HeSVKEY_force(HE* he)
1584
1585 =for hackers
1586 Found in file hv.h
1587
1588 =item HeSVKEY_set
1589 X<HeSVKEY_set>
1590
1591 Sets the key to a given C<SV*>, taking care to set the appropriate flags to
1592 indicate the presence of an C<SV*> key, and returns the same
1593 C<SV*>.
1594
1595         SV*     HeSVKEY_set(HE* he, SV* sv)
1596
1597 =for hackers
1598 Found in file hv.h
1599
1600 =item HeVAL
1601 X<HeVAL>
1602
1603 Returns the value slot (type C<SV*>) stored in the hash entry.
1604
1605         SV*     HeVAL(HE* he)
1606
1607 =for hackers
1608 Found in file hv.h
1609
1610 =item HvNAME
1611 X<HvNAME>
1612
1613 Returns the package name of a stash, or NULL if C<stash> isn't a stash.
1614 See C<SvSTASH>, C<CvSTASH>.
1615
1616         char*   HvNAME(HV* stash)
1617
1618 =for hackers
1619 Found in file hv.h
1620
1621 =item hv_assert
1622 X<hv_assert>
1623
1624 Check that a hash is in an internally consistent state.
1625
1626         void    hv_assert(HV* tb)
1627
1628 =for hackers
1629 Found in file hv.c
1630
1631 =item hv_clear
1632 X<hv_clear>
1633
1634 Clears a hash, making it empty.
1635
1636         void    hv_clear(HV* tb)
1637
1638 =for hackers
1639 Found in file hv.c
1640
1641 =item hv_clear_placeholders
1642 X<hv_clear_placeholders>
1643
1644 Clears any placeholders from a hash.  If a restricted hash has any of its keys
1645 marked as readonly and the key is subsequently deleted, the key is not actually
1646 deleted but is marked by assigning it a value of &PL_sv_placeholder.  This tags
1647 it so it will be ignored by future operations such as iterating over the hash,
1648 but will still allow the hash to have a value reassigned to the key at some
1649 future point.  This function clears any such placeholder keys from the hash.
1650 See Hash::Util::lock_keys() for an example of its use.
1651
1652         void    hv_clear_placeholders(HV* hb)
1653
1654 =for hackers
1655 Found in file hv.c
1656
1657 =item hv_delete
1658 X<hv_delete>
1659
1660 Deletes a key/value pair in the hash.  The value SV is removed from the
1661 hash and returned to the caller.  The C<klen> is the length of the key.
1662 The C<flags> value will normally be zero; if set to G_DISCARD then NULL
1663 will be returned.
1664
1665         SV*     hv_delete(HV* tb, const char* key, I32 klen, I32 flags)
1666
1667 =for hackers
1668 Found in file hv.c
1669
1670 =item hv_delete_ent
1671 X<hv_delete_ent>
1672
1673 Deletes a key/value pair in the hash.  The value SV is removed from the
1674 hash and returned to the caller.  The C<flags> value will normally be zero;
1675 if set to G_DISCARD then NULL will be returned.  C<hash> can be a valid
1676 precomputed hash value, or 0 to ask for it to be computed.
1677
1678         SV*     hv_delete_ent(HV* tb, SV* key, I32 flags, U32 hash)
1679
1680 =for hackers
1681 Found in file hv.c
1682
1683 =item hv_exists
1684 X<hv_exists>
1685
1686 Returns a boolean indicating whether the specified hash key exists.  The
1687 C<klen> is the length of the key.
1688
1689         bool    hv_exists(HV* tb, const char* key, I32 klen)
1690
1691 =for hackers
1692 Found in file hv.c
1693
1694 =item hv_exists_ent
1695 X<hv_exists_ent>
1696
1697 Returns a boolean indicating whether the specified hash key exists. C<hash>
1698 can be a valid precomputed hash value, or 0 to ask for it to be
1699 computed.
1700
1701         bool    hv_exists_ent(HV* tb, SV* key, U32 hash)
1702
1703 =for hackers
1704 Found in file hv.c
1705
1706 =item hv_fetch
1707 X<hv_fetch>
1708
1709 Returns the SV which corresponds to the specified key in the hash.  The
1710 C<klen> is the length of the key.  If C<lval> is set then the fetch will be
1711 part of a store.  Check that the return value is non-null before
1712 dereferencing it to an C<SV*>.
1713
1714 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
1715 information on how to use this function on tied hashes.
1716
1717         SV**    hv_fetch(HV* tb, const char* key, I32 klen, I32 lval)
1718
1719 =for hackers
1720 Found in file hv.c
1721
1722 =item hv_fetchs
1723 X<hv_fetchs>
1724
1725 Like C<hv_fetch>, but takes a literal string instead of a string/length pair.
1726
1727         SV**    hv_fetchs(HV* tb, const char* key, I32 lval)
1728
1729 =for hackers
1730 Found in file handy.h
1731
1732 =item hv_fetch_ent
1733 X<hv_fetch_ent>
1734
1735 Returns the hash entry which corresponds to the specified key in the hash.
1736 C<hash> must be a valid precomputed hash number for the given C<key>, or 0
1737 if you want the function to compute it.  IF C<lval> is set then the fetch
1738 will be part of a store.  Make sure the return value is non-null before
1739 accessing it.  The return value when C<tb> is a tied hash is a pointer to a
1740 static location, so be sure to make a copy of the structure if you need to
1741 store it somewhere.
1742
1743 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
1744 information on how to use this function on tied hashes.
1745
1746         HE*     hv_fetch_ent(HV* tb, SV* key, I32 lval, U32 hash)
1747
1748 =for hackers
1749 Found in file hv.c
1750
1751 =item hv_iterinit
1752 X<hv_iterinit>
1753
1754 Prepares a starting point to traverse a hash table.  Returns the number of
1755 keys in the hash (i.e. the same as C<HvKEYS(tb)>).  The return value is
1756 currently only meaningful for hashes without tie magic.
1757
1758 NOTE: Before version 5.004_65, C<hv_iterinit> used to return the number of
1759 hash buckets that happen to be in use.  If you still need that esoteric
1760 value, you can get it through the macro C<HvFILL(tb)>.
1761
1762
1763         I32     hv_iterinit(HV* tb)
1764
1765 =for hackers
1766 Found in file hv.c
1767
1768 =item hv_iterkey
1769 X<hv_iterkey>
1770
1771 Returns the key from the current position of the hash iterator.  See
1772 C<hv_iterinit>.
1773
1774         char*   hv_iterkey(HE* entry, I32* retlen)
1775
1776 =for hackers
1777 Found in file hv.c
1778
1779 =item hv_iterkeysv
1780 X<hv_iterkeysv>
1781
1782 Returns the key as an C<SV*> from the current position of the hash
1783 iterator.  The return value will always be a mortal copy of the key.  Also
1784 see C<hv_iterinit>.
1785
1786         SV*     hv_iterkeysv(HE* entry)
1787
1788 =for hackers
1789 Found in file hv.c
1790
1791 =item hv_iternext
1792 X<hv_iternext>
1793
1794 Returns entries from a hash iterator.  See C<hv_iterinit>.
1795
1796 You may call C<hv_delete> or C<hv_delete_ent> on the hash entry that the
1797 iterator currently points to, without losing your place or invalidating your
1798 iterator.  Note that in this case the current entry is deleted from the hash
1799 with your iterator holding the last reference to it.  Your iterator is flagged
1800 to free the entry on the next call to C<hv_iternext>, so you must not discard
1801 your iterator immediately else the entry will leak - call C<hv_iternext> to
1802 trigger the resource deallocation.
1803
1804         HE*     hv_iternext(HV* tb)
1805
1806 =for hackers
1807 Found in file hv.c
1808
1809 =item hv_iternextsv
1810 X<hv_iternextsv>
1811
1812 Performs an C<hv_iternext>, C<hv_iterkey>, and C<hv_iterval> in one
1813 operation.
1814
1815         SV*     hv_iternextsv(HV* hv, char** key, I32* retlen)
1816
1817 =for hackers
1818 Found in file hv.c
1819
1820 =item hv_iternext_flags
1821 X<hv_iternext_flags>
1822
1823 Returns entries from a hash iterator.  See C<hv_iterinit> and C<hv_iternext>.
1824 The C<flags> value will normally be zero; if HV_ITERNEXT_WANTPLACEHOLDERS is
1825 set the placeholders keys (for restricted hashes) will be returned in addition
1826 to normal keys. By default placeholders are automatically skipped over.
1827 Currently a placeholder is implemented with a value that is
1828 C<&Perl_sv_placeholder>. Note that the implementation of placeholders and
1829 restricted hashes may change, and the implementation currently is
1830 insufficiently abstracted for any change to be tidy.
1831
1832 NOTE: this function is experimental and may change or be
1833 removed without notice.
1834
1835         HE*     hv_iternext_flags(HV* tb, I32 flags)
1836
1837 =for hackers
1838 Found in file hv.c
1839
1840 =item hv_iterval
1841 X<hv_iterval>
1842
1843 Returns the value from the current position of the hash iterator.  See
1844 C<hv_iterkey>.
1845
1846         SV*     hv_iterval(HV* tb, HE* entry)
1847
1848 =for hackers
1849 Found in file hv.c
1850
1851 =item hv_magic
1852 X<hv_magic>
1853
1854 Adds magic to a hash.  See C<sv_magic>.
1855
1856         void    hv_magic(HV* hv, GV* gv, int how)
1857
1858 =for hackers
1859 Found in file hv.c
1860
1861 =item hv_scalar
1862 X<hv_scalar>
1863
1864 Evaluates the hash in scalar context and returns the result. Handles magic when the hash is tied.
1865
1866         SV*     hv_scalar(HV* hv)
1867
1868 =for hackers
1869 Found in file hv.c
1870
1871 =item hv_store
1872 X<hv_store>
1873
1874 Stores an SV in a hash.  The hash key is specified as C<key> and C<klen> is
1875 the length of the key.  The C<hash> parameter is the precomputed hash
1876 value; if it is zero then Perl will compute it.  The return value will be
1877 NULL if the operation failed or if the value did not need to be actually
1878 stored within the hash (as in the case of tied hashes).  Otherwise it can
1879 be dereferenced to get the original C<SV*>.  Note that the caller is
1880 responsible for suitably incrementing the reference count of C<val> before
1881 the call, and decrementing it if the function returned NULL.  Effectively
1882 a successful hv_store takes ownership of one reference to C<val>.  This is
1883 usually what you want; a newly created SV has a reference count of one, so
1884 if all your code does is create SVs then store them in a hash, hv_store
1885 will own the only reference to the new SV, and your code doesn't need to do
1886 anything further to tidy up.  hv_store is not implemented as a call to
1887 hv_store_ent, and does not create a temporary SV for the key, so if your
1888 key data is not already in SV form then use hv_store in preference to
1889 hv_store_ent.
1890
1891 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
1892 information on how to use this function on tied hashes.
1893
1894         SV**    hv_store(HV* tb, const char* key, I32 klen, SV* val, U32 hash)
1895
1896 =for hackers
1897 Found in file hv.c
1898
1899 =item hv_stores
1900 X<hv_stores>
1901
1902 Like C<hv_store>, but takes a literal string instead of a string/length pair
1903 and omits the hash parameter.
1904
1905         SV**    hv_stores(HV* tb, const char* key, NULLOK SV* val)
1906
1907 =for hackers
1908 Found in file handy.h
1909
1910 =item hv_store_ent
1911 X<hv_store_ent>
1912
1913 Stores C<val> in a hash.  The hash key is specified as C<key>.  The C<hash>
1914 parameter is the precomputed hash value; if it is zero then Perl will
1915 compute it.  The return value is the new hash entry so created.  It will be
1916 NULL if the operation failed or if the value did not need to be actually
1917 stored within the hash (as in the case of tied hashes).  Otherwise the
1918 contents of the return value can be accessed using the C<He?> macros
1919 described here.  Note that the caller is responsible for suitably
1920 incrementing the reference count of C<val> before the call, and
1921 decrementing it if the function returned NULL.  Effectively a successful
1922 hv_store_ent takes ownership of one reference to C<val>.  This is
1923 usually what you want; a newly created SV has a reference count of one, so
1924 if all your code does is create SVs then store them in a hash, hv_store
1925 will own the only reference to the new SV, and your code doesn't need to do
1926 anything further to tidy up.  Note that hv_store_ent only reads the C<key>;
1927 unlike C<val> it does not take ownership of it, so maintaining the correct
1928 reference count on C<key> is entirely the caller's responsibility.  hv_store
1929 is not implemented as a call to hv_store_ent, and does not create a temporary
1930 SV for the key, so if your key data is not already in SV form then use
1931 hv_store in preference to hv_store_ent.
1932
1933 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
1934 information on how to use this function on tied hashes.
1935
1936         HE*     hv_store_ent(HV* tb, SV* key, SV* val, U32 hash)
1937
1938 =for hackers
1939 Found in file hv.c
1940
1941 =item hv_undef
1942 X<hv_undef>
1943
1944 Undefines the hash.
1945
1946         void    hv_undef(HV* tb)
1947
1948 =for hackers
1949 Found in file hv.c
1950
1951 =item newHV
1952 X<newHV>
1953
1954 Creates a new HV.  The reference count is set to 1.
1955
1956         HV*     newHV()
1957
1958 =for hackers
1959 Found in file hv.c
1960
1961
1962 =back
1963
1964 =head1 Magical Functions
1965
1966 =over 8
1967
1968 =item mg_clear
1969 X<mg_clear>
1970
1971 Clear something magical that the SV represents.  See C<sv_magic>.
1972
1973         int     mg_clear(SV* sv)
1974
1975 =for hackers
1976 Found in file mg.c
1977
1978 =item mg_copy
1979 X<mg_copy>
1980
1981 Copies the magic from one SV to another.  See C<sv_magic>.
1982
1983         int     mg_copy(SV* sv, SV* nsv, const char* key, I32 klen)
1984
1985 =for hackers
1986 Found in file mg.c
1987
1988 =item mg_find
1989 X<mg_find>
1990
1991 Finds the magic pointer for type matching the SV.  See C<sv_magic>.
1992
1993         MAGIC*  mg_find(const SV* sv, int type)
1994
1995 =for hackers
1996 Found in file mg.c
1997
1998 =item mg_free
1999 X<mg_free>
2000
2001 Free any magic storage used by the SV.  See C<sv_magic>.
2002
2003         int     mg_free(SV* sv)
2004
2005 =for hackers
2006 Found in file mg.c
2007
2008 =item mg_get
2009 X<mg_get>
2010
2011 Do magic after a value is retrieved from the SV.  See C<sv_magic>.
2012
2013         int     mg_get(SV* sv)
2014
2015 =for hackers
2016 Found in file mg.c
2017
2018 =item mg_length
2019 X<mg_length>
2020
2021 Report on the SV's length.  See C<sv_magic>.
2022
2023         U32     mg_length(SV* sv)
2024
2025 =for hackers
2026 Found in file mg.c
2027
2028 =item mg_magical
2029 X<mg_magical>
2030
2031 Turns on the magical status of an SV.  See C<sv_magic>.
2032
2033         void    mg_magical(SV* sv)
2034
2035 =for hackers
2036 Found in file mg.c
2037
2038 =item mg_set
2039 X<mg_set>
2040
2041 Do magic after a value is assigned to the SV.  See C<sv_magic>.
2042
2043         int     mg_set(SV* sv)
2044
2045 =for hackers
2046 Found in file mg.c
2047
2048 =item SvGETMAGIC
2049 X<SvGETMAGIC>
2050
2051 Invokes C<mg_get> on an SV if it has 'get' magic.  This macro evaluates its
2052 argument more than once.
2053
2054         void    SvGETMAGIC(SV* sv)
2055
2056 =for hackers
2057 Found in file sv.h
2058
2059 =item SvLOCK
2060 X<SvLOCK>
2061
2062 Arranges for a mutual exclusion lock to be obtained on sv if a suitable module
2063 has been loaded.
2064
2065         void    SvLOCK(SV* sv)
2066
2067 =for hackers
2068 Found in file sv.h
2069
2070 =item SvSETMAGIC
2071 X<SvSETMAGIC>
2072
2073 Invokes C<mg_set> on an SV if it has 'set' magic.  This macro evaluates its
2074 argument more than once.
2075
2076         void    SvSETMAGIC(SV* sv)
2077
2078 =for hackers
2079 Found in file sv.h
2080
2081 =item SvSetMagicSV
2082 X<SvSetMagicSV>
2083
2084 Like C<SvSetSV>, but does any set magic required afterwards.
2085
2086         void    SvSetMagicSV(SV* dsb, SV* ssv)
2087
2088 =for hackers
2089 Found in file sv.h
2090
2091 =item SvSetMagicSV_nosteal
2092 X<SvSetMagicSV_nosteal>
2093
2094 Like C<SvSetSV_nosteal>, but does any set magic required afterwards.
2095
2096         void    SvSetMagicSV_nosteal(SV* dsv, SV* ssv)
2097
2098 =for hackers
2099 Found in file sv.h
2100
2101 =item SvSetSV
2102 X<SvSetSV>
2103
2104 Calls C<sv_setsv> if dsv is not the same as ssv.  May evaluate arguments
2105 more than once.
2106
2107         void    SvSetSV(SV* dsb, SV* ssv)
2108
2109 =for hackers
2110 Found in file sv.h
2111
2112 =item SvSetSV_nosteal
2113 X<SvSetSV_nosteal>
2114
2115 Calls a non-destructive version of C<sv_setsv> if dsv is not the same as
2116 ssv. May evaluate arguments more than once.
2117
2118         void    SvSetSV_nosteal(SV* dsv, SV* ssv)
2119
2120 =for hackers
2121 Found in file sv.h
2122
2123 =item SvSHARE
2124 X<SvSHARE>
2125
2126 Arranges for sv to be shared between threads if a suitable module
2127 has been loaded.
2128
2129         void    SvSHARE(SV* sv)
2130
2131 =for hackers
2132 Found in file sv.h
2133
2134 =item SvUNLOCK
2135 X<SvUNLOCK>
2136
2137 Releases a mutual exclusion lock on sv if a suitable module
2138 has been loaded.
2139
2140         void    SvUNLOCK(SV* sv)
2141
2142 =for hackers
2143 Found in file sv.h
2144
2145
2146 =back
2147
2148 =head1 Memory Management
2149
2150 =over 8
2151
2152 =item Copy
2153 X<Copy>
2154
2155 The XSUB-writer's interface to the C C<memcpy> function.  The C<src> is the
2156 source, C<dest> is the destination, C<nitems> is the number of items, and C<type> is
2157 the type.  May fail on overlapping copies.  See also C<Move>.
2158
2159         void    Copy(void* src, void* dest, int nitems, type)
2160
2161 =for hackers
2162 Found in file handy.h
2163
2164 =item CopyD
2165 X<CopyD>
2166
2167 Like C<Copy> but returns dest. Useful for encouraging compilers to tail-call
2168 optimise.
2169
2170         void *  CopyD(void* src, void* dest, int nitems, type)
2171
2172 =for hackers
2173 Found in file handy.h
2174
2175 =item Move
2176 X<Move>
2177
2178 The XSUB-writer's interface to the C C<memmove> function.  The C<src> is the
2179 source, C<dest> is the destination, C<nitems> is the number of items, and C<type> is
2180 the type.  Can do overlapping moves.  See also C<Copy>.
2181
2182         void    Move(void* src, void* dest, int nitems, type)
2183
2184 =for hackers
2185 Found in file handy.h
2186
2187 =item MoveD
2188 X<MoveD>
2189
2190 Like C<Move> but returns dest. Useful for encouraging compilers to tail-call
2191 optimise.
2192
2193         void *  MoveD(void* src, void* dest, int nitems, type)
2194
2195 =for hackers
2196 Found in file handy.h
2197
2198 =item Newx
2199 X<Newx>
2200
2201 The XSUB-writer's interface to the C C<malloc> function.
2202
2203 In 5.9.3, Newx() and friends replace the older New() API, and drops
2204 the first parameter, I<x>, a debug aid which allowed callers to identify
2205 themselves.  This aid has been superseded by a new build option,
2206 PERL_MEM_LOG (see L<perlhack/PERL_MEM_LOG>).  The older API is still
2207 there for use in XS modules supporting older perls.
2208
2209         void    Newx(void* ptr, int nitems, type)
2210
2211 =for hackers
2212 Found in file handy.h
2213
2214 =item Newxc
2215 X<Newxc>
2216
2217 The XSUB-writer's interface to the C C<malloc> function, with
2218 cast.  See also C<Newx>.
2219
2220         void    Newxc(void* ptr, int nitems, type, cast)
2221
2222 =for hackers
2223 Found in file handy.h
2224
2225 =item Newxz
2226 X<Newxz>
2227
2228 The XSUB-writer's interface to the C C<malloc> function.  The allocated
2229 memory is zeroed with C<memzero>.  See also C<Newx>.
2230
2231         void    Newxz(void* ptr, int nitems, type)
2232
2233 =for hackers
2234 Found in file handy.h
2235
2236 =item Poison
2237 X<Poison>
2238
2239 PoisonWith(0xEF) for catching access to freed memory.
2240
2241         void    Poison(void* dest, int nitems, type)
2242
2243 =for hackers
2244 Found in file handy.h
2245
2246 =item PoisonFree
2247 X<PoisonFree>
2248
2249 PoisonWith(0xEF) for catching access to freed memory.
2250
2251         void    PoisonFree(void* dest, int nitems, type)
2252
2253 =for hackers
2254 Found in file handy.h
2255
2256 =item PoisonNew
2257 X<PoisonNew>
2258
2259 PoisonWith(0xAB) for catching access to allocated but uninitialized memory.
2260
2261         void    PoisonNew(void* dest, int nitems, type)
2262
2263 =for hackers
2264 Found in file handy.h
2265
2266 =item PoisonWith
2267 X<PoisonWith>
2268
2269 Fill up memory with a byte pattern (a byte repeated over and over
2270 again) that hopefully catches attempts to access uninitialized memory.
2271
2272         void    PoisonWith(void* dest, int nitems, type, U8 byte)
2273
2274 =for hackers
2275 Found in file handy.h
2276
2277 =item Renew
2278 X<Renew>
2279
2280 The XSUB-writer's interface to the C C<realloc> function.
2281
2282         void    Renew(void* ptr, int nitems, type)
2283
2284 =for hackers
2285 Found in file handy.h
2286
2287 =item Renewc
2288 X<Renewc>
2289
2290 The XSUB-writer's interface to the C C<realloc> function, with
2291 cast.
2292
2293         void    Renewc(void* ptr, int nitems, type, cast)
2294
2295 =for hackers
2296 Found in file handy.h
2297
2298 =item Safefree
2299 X<Safefree>
2300
2301 The XSUB-writer's interface to the C C<free> function.
2302
2303         void    Safefree(void* ptr)
2304
2305 =for hackers
2306 Found in file handy.h
2307
2308 =item savepv
2309 X<savepv>
2310
2311 Perl's version of C<strdup()>. Returns a pointer to a newly allocated
2312 string which is a duplicate of C<pv>. The size of the string is
2313 determined by C<strlen()>. The memory allocated for the new string can
2314 be freed with the C<Safefree()> function.
2315
2316         char*   savepv(const char* pv)
2317
2318 =for hackers
2319 Found in file util.c
2320
2321 =item savepvn
2322 X<savepvn>
2323
2324 Perl's version of what C<strndup()> would be if it existed. Returns a
2325 pointer to a newly allocated string which is a duplicate of the first
2326 C<len> bytes from C<pv>, plus a trailing NUL byte. The memory allocated for
2327 the new string can be freed with the C<Safefree()> function.
2328
2329         char*   savepvn(const char* pv, I32 len)
2330
2331 =for hackers
2332 Found in file util.c
2333
2334 =item savepvs
2335 X<savepvs>
2336
2337 Like C<savepvn>, but takes a literal string instead of a string/length pair.
2338
2339         char*   savepvs(const char* s)
2340
2341 =for hackers
2342 Found in file handy.h
2343
2344 =item savesharedpv
2345 X<savesharedpv>
2346
2347 A version of C<savepv()> which allocates the duplicate string in memory
2348 which is shared between threads.
2349
2350         char*   savesharedpv(const char* pv)
2351
2352 =for hackers
2353 Found in file util.c
2354
2355 =item savesharedpvn
2356 X<savesharedpvn>
2357
2358 A version of C<savepvn()> which allocates the duplicate string in memory
2359 which is shared between threads. (With the specific difference that a NULL
2360 pointer is not acceptable)
2361
2362         char*   savesharedpvn(const char *const pv, const STRLEN len)
2363
2364 =for hackers
2365 Found in file util.c
2366
2367 =item savesvpv
2368 X<savesvpv>
2369
2370 A version of C<savepv()>/C<savepvn()> which gets the string to duplicate from
2371 the passed in SV using C<SvPV()>
2372
2373         char*   savesvpv(SV* sv)
2374
2375 =for hackers
2376 Found in file util.c
2377
2378 =item StructCopy
2379 X<StructCopy>
2380
2381 This is an architecture-independent macro to copy one structure to another.
2382
2383         void    StructCopy(type src, type dest, type)
2384
2385 =for hackers
2386 Found in file handy.h
2387
2388 =item Zero
2389 X<Zero>
2390
2391 The XSUB-writer's interface to the C C<memzero> function.  The C<dest> is the
2392 destination, C<nitems> is the number of items, and C<type> is the type.
2393
2394         void    Zero(void* dest, int nitems, type)
2395
2396 =for hackers
2397 Found in file handy.h
2398
2399 =item ZeroD
2400 X<ZeroD>
2401
2402 Like C<Zero> but returns dest. Useful for encouraging compilers to tail-call
2403 optimise.
2404
2405         void *  ZeroD(void* dest, int nitems, type)
2406
2407 =for hackers
2408 Found in file handy.h
2409
2410
2411 =back
2412
2413 =head1 Miscellaneous Functions
2414
2415 =over 8
2416
2417 =item fbm_compile
2418 X<fbm_compile>
2419
2420 Analyses the string in order to make fast searches on it using fbm_instr()
2421 -- the Boyer-Moore algorithm.
2422
2423         void    fbm_compile(SV* sv, U32 flags)
2424
2425 =for hackers
2426 Found in file util.c
2427
2428 =item fbm_instr
2429 X<fbm_instr>
2430
2431 Returns the location of the SV in the string delimited by C<str> and
2432 C<strend>.  It returns C<NULL> if the string can't be found.  The C<sv>
2433 does not have to be fbm_compiled, but the search will not be as fast
2434 then.
2435
2436         char*   fbm_instr(unsigned char* big, unsigned char* bigend, SV* littlesv, U32 flags)
2437
2438 =for hackers
2439 Found in file util.c
2440
2441 =item form
2442 X<form>
2443
2444 Takes a sprintf-style format pattern and conventional
2445 (non-SV) arguments and returns the formatted string.
2446
2447     (char *) Perl_form(pTHX_ const char* pat, ...)
2448
2449 can be used any place a string (char *) is required:
2450
2451     char * s = Perl_form("%d.%d",major,minor);
2452
2453 Uses a single private buffer so if you want to format several strings you
2454 must explicitly copy the earlier strings away (and free the copies when you
2455 are done).
2456
2457         char*   form(const char* pat, ...)
2458
2459 =for hackers
2460 Found in file util.c
2461
2462 =item getcwd_sv
2463 X<getcwd_sv>
2464
2465 Fill the sv with current working directory
2466
2467         int     getcwd_sv(SV* sv)
2468
2469 =for hackers
2470 Found in file util.c
2471
2472 =item my_snprintf
2473 X<my_snprintf>
2474
2475 The C library C<snprintf> functionality, if available and
2476 standards-compliant (uses C<vsnprintf>, actually).  However, if the
2477 C<vsnprintf> is not available, will unfortunately use the unsafe
2478 C<vsprintf> which can overrun the buffer (there is an overrun check,
2479 but that may be too late).  Consider using C<sv_vcatpvf> instead, or
2480 getting C<vsnprintf>.
2481
2482         int     my_snprintf(char *buffer, const Size_t len, const char *format, ...)
2483
2484 =for hackers
2485 Found in file util.c
2486
2487 =item my_sprintf
2488 X<my_sprintf>
2489
2490 The C library C<sprintf>, wrapped if necessary, to ensure that it will return
2491 the length of the string written to the buffer. Only rare pre-ANSI systems
2492 need the wrapper function - usually this is a direct call to C<sprintf>.
2493
2494         int     my_sprintf(char *buffer, const char *pat, ...)
2495
2496 =for hackers
2497 Found in file util.c
2498
2499 =item my_vsnprintf
2500 X<my_vsnprintf>
2501
2502 The C library C<vsnprintf> if available and standards-compliant.
2503 However, if if the C<vsnprintf> is not available, will unfortunately
2504 use the unsafe C<vsprintf> which can overrun the buffer (there is an
2505 overrun check, but that may be too late).  Consider using
2506 C<sv_vcatpvf> instead, or getting C<vsnprintf>.
2507
2508         int     my_vsnprintf(char *buffer, const Size_t len, const char *format, va_list ap)
2509
2510 =for hackers
2511 Found in file util.c
2512
2513 =item new_version
2514 X<new_version>
2515
2516 Returns a new version object based on the passed in SV:
2517
2518     SV *sv = new_version(SV *ver);
2519
2520 Does not alter the passed in ver SV.  See "upg_version" if you
2521 want to upgrade the SV.
2522
2523         SV*     new_version(SV *ver)
2524
2525 =for hackers
2526 Found in file util.c
2527
2528 =item scan_version
2529 X<scan_version>
2530
2531 Returns a pointer to the next character after the parsed
2532 version string, as well as upgrading the passed in SV to
2533 an RV.
2534
2535 Function must be called with an already existing SV like
2536
2537     sv = newSV(0);
2538     s = scan_version(s, SV *sv, bool qv);
2539
2540 Performs some preprocessing to the string to ensure that
2541 it has the correct characteristics of a version.  Flags the
2542 object if it contains an underscore (which denotes this
2543 is an alpha version).  The boolean qv denotes that the version
2544 should be interpreted as if it had multiple decimals, even if
2545 it doesn't.
2546
2547         const char*     scan_version(const char *vstr, SV *sv, bool qv)
2548
2549 =for hackers
2550 Found in file util.c
2551
2552 =item strEQ
2553 X<strEQ>
2554
2555 Test two strings to see if they are equal.  Returns true or false.
2556
2557         bool    strEQ(char* s1, char* s2)
2558
2559 =for hackers
2560 Found in file handy.h
2561
2562 =item strGE
2563 X<strGE>
2564
2565 Test two strings to see if the first, C<s1>, is greater than or equal to
2566 the second, C<s2>.  Returns true or false.
2567
2568         bool    strGE(char* s1, char* s2)
2569
2570 =for hackers
2571 Found in file handy.h
2572
2573 =item strGT
2574 X<strGT>
2575
2576 Test two strings to see if the first, C<s1>, is greater than the second,
2577 C<s2>.  Returns true or false.
2578
2579         bool    strGT(char* s1, char* s2)
2580
2581 =for hackers
2582 Found in file handy.h
2583
2584 =item strLE
2585 X<strLE>
2586
2587 Test two strings to see if the first, C<s1>, is less than or equal to the
2588 second, C<s2>.  Returns true or false.
2589
2590         bool    strLE(char* s1, char* s2)
2591
2592 =for hackers
2593 Found in file handy.h
2594
2595 =item strLT
2596 X<strLT>
2597
2598 Test two strings to see if the first, C<s1>, is less than the second,
2599 C<s2>.  Returns true or false.
2600
2601         bool    strLT(char* s1, char* s2)
2602
2603 =for hackers
2604 Found in file handy.h
2605
2606 =item strNE
2607 X<strNE>
2608
2609 Test two strings to see if they are different.  Returns true or
2610 false.
2611
2612         bool    strNE(char* s1, char* s2)
2613
2614 =for hackers
2615 Found in file handy.h
2616
2617 =item strnEQ
2618 X<strnEQ>
2619
2620 Test two strings to see if they are equal.  The C<len> parameter indicates
2621 the number of bytes to compare.  Returns true or false. (A wrapper for
2622 C<strncmp>).
2623
2624         bool    strnEQ(char* s1, char* s2, STRLEN len)
2625
2626 =for hackers
2627 Found in file handy.h
2628
2629 =item strnNE
2630 X<strnNE>
2631
2632 Test two strings to see if they are different.  The C<len> parameter
2633 indicates the number of bytes to compare.  Returns true or false. (A
2634 wrapper for C<strncmp>).
2635
2636         bool    strnNE(char* s1, char* s2, STRLEN len)
2637
2638 =for hackers
2639 Found in file handy.h
2640
2641 =item sv_nosharing
2642 X<sv_nosharing>
2643
2644 Dummy routine which "shares" an SV when there is no sharing module present.
2645 Or "locks" it. Or "unlocks" it. In other words, ignores its single SV argument.
2646 Exists to avoid test for a NULL function pointer and because it could
2647 potentially warn under some level of strict-ness.
2648
2649         void    sv_nosharing(SV *sv)
2650
2651 =for hackers
2652 Found in file util.c
2653
2654 =item upg_version
2655 X<upg_version>
2656
2657 In-place upgrade of the supplied SV to a version object.
2658
2659     SV *sv = upg_version(SV *sv, bool qv);
2660
2661 Returns a pointer to the upgraded SV.  Set the boolean qv if you want
2662 to force this SV to be interpreted as an "extended" version.
2663
2664         SV*     upg_version(SV *ver, bool qv)
2665
2666 =for hackers
2667 Found in file util.c
2668
2669 =item vcmp
2670 X<vcmp>
2671
2672 Version object aware cmp.  Both operands must already have been 
2673 converted into version objects.
2674
2675         int     vcmp(SV *lvs, SV *rvs)
2676
2677 =for hackers
2678 Found in file util.c
2679
2680 =item vnormal
2681 X<vnormal>
2682
2683 Accepts a version object and returns the normalized string
2684 representation.  Call like:
2685
2686     sv = vnormal(rv);
2687
2688 NOTE: you can pass either the object directly or the SV
2689 contained within the RV.
2690
2691         SV*     vnormal(SV *vs)
2692
2693 =for hackers
2694 Found in file util.c
2695
2696 =item vnumify
2697 X<vnumify>
2698
2699 Accepts a version object and returns the normalized floating
2700 point representation.  Call like:
2701
2702     sv = vnumify(rv);
2703
2704 NOTE: you can pass either the object directly or the SV
2705 contained within the RV.
2706
2707         SV*     vnumify(SV *vs)
2708
2709 =for hackers
2710 Found in file util.c
2711
2712 =item vstringify
2713 X<vstringify>
2714
2715 In order to maintain maximum compatibility with earlier versions
2716 of Perl, this function will return either the floating point
2717 notation or the multiple dotted notation, depending on whether
2718 the original version contained 1 or more dots, respectively
2719
2720         SV*     vstringify(SV *vs)
2721
2722 =for hackers
2723 Found in file util.c
2724
2725 =item vverify
2726 X<vverify>
2727
2728 Validates that the SV contains a valid version object.
2729
2730     bool vverify(SV *vobj);
2731
2732 Note that it only confirms the bare minimum structure (so as not to get
2733 confused by derived classes which may contain additional hash entries):
2734
2735         bool    vverify(SV *vs)
2736
2737 =for hackers
2738 Found in file util.c
2739
2740
2741 =back
2742
2743 =head1 MRO Functions
2744
2745 =over 8
2746
2747 =item mro_get_linear_isa
2748 X<mro_get_linear_isa>
2749
2750 Returns either C<mro_get_linear_isa_c3> or
2751 C<mro_get_linear_isa_dfs> for the given stash,
2752 dependant upon which MRO is in effect
2753 for that stash.  The return value is a
2754 read-only AV*.
2755
2756 You are responsible for C<SvREFCNT_inc()> on the
2757 return value if you plan to store it anywhere
2758 semi-permanently (otherwise it might be deleted
2759 out from under you the next time the cache is
2760 invalidated).
2761
2762         AV*     mro_get_linear_isa(HV* stash)
2763
2764 =for hackers
2765 Found in file mro.c
2766
2767 =item mro_get_linear_isa_c3
2768 X<mro_get_linear_isa_c3>
2769
2770 Returns the C3 linearization of @ISA
2771 the given stash.  The return value is a read-only AV*.
2772 C<level> should be 0 (it is used internally in this
2773 function's recursion).
2774
2775 You are responsible for C<SvREFCNT_inc()> on the
2776 return value if you plan to store it anywhere
2777 semi-permanently (otherwise it might be deleted
2778 out from under you the next time the cache is
2779 invalidated).
2780
2781         AV*     mro_get_linear_isa_c3(HV* stash, I32 level)
2782
2783 =for hackers
2784 Found in file mro.c
2785
2786 =item mro_get_linear_isa_dfs
2787 X<mro_get_linear_isa_dfs>
2788
2789 Returns the Depth-First Search linearization of @ISA
2790 the given stash.  The return value is a read-only AV*.
2791 C<level> should be 0 (it is used internally in this
2792 function's recursion).
2793
2794 You are responsible for C<SvREFCNT_inc()> on the
2795 return value if you plan to store it anywhere
2796 semi-permanently (otherwise it might be deleted
2797 out from under you the next time the cache is
2798 invalidated).
2799
2800         AV*     mro_get_linear_isa_dfs(HV* stash, I32 level)
2801
2802 =for hackers
2803 Found in file mro.c
2804
2805 =item mro_method_changed_in
2806 X<mro_method_changed_in>
2807
2808 Invalidates method caching on any child classes
2809 of the given stash, so that they might notice
2810 the changes in this one.
2811
2812 Ideally, all instances of C<PL_sub_generation++> in
2813 the perl source outside of C<mro.c> should be
2814 replaced by calls to this.  This conversion is
2815 nearly complete.
2816
2817 Perl has always had problems with method caches
2818 getting out of sync when one directly manipulates
2819 stashes via things like C<%{Foo::} = %{Bar::}> or 
2820 C<${Foo::}{bar} = ...> or the equivalent.  If
2821 you do this in core or XS code, call this afterwards
2822 on the destination stash to get things back in sync.
2823
2824 If you're doing such a thing from pure perl, use
2825 C<mro::method_changed_in(classname)>, which
2826 just calls this.
2827
2828         void    mro_method_changed_in(HV* stash)
2829
2830 =for hackers
2831 Found in file mro.c
2832
2833
2834 =back
2835
2836 =head1 Multicall Functions
2837
2838 =over 8
2839
2840 =item dMULTICALL
2841 X<dMULTICALL>
2842
2843 Declare local variables for a multicall. See L<perlcall/Lightweight Callbacks>.
2844
2845                 dMULTICALL;
2846
2847 =for hackers
2848 Found in file cop.h
2849
2850 =item MULTICALL
2851 X<MULTICALL>
2852
2853 Make a lightweight callback. See L<perlcall/Lightweight Callbacks>.
2854
2855                 MULTICALL;
2856
2857 =for hackers
2858 Found in file cop.h
2859
2860 =item POP_MULTICALL
2861 X<POP_MULTICALL>
2862
2863 Closing bracket for a lightweight callback.
2864 See L<perlcall/Lightweight Callbacks>.
2865
2866                 POP_MULTICALL;
2867
2868 =for hackers
2869 Found in file cop.h
2870
2871 =item PUSH_MULTICALL
2872 X<PUSH_MULTICALL>
2873
2874 Opening bracket for a lightweight callback.
2875 See L<perlcall/Lightweight Callbacks>.
2876
2877                 PUSH_MULTICALL;
2878
2879 =for hackers
2880 Found in file cop.h
2881
2882
2883 =back
2884
2885 =head1 Numeric functions
2886
2887 =over 8
2888
2889 =item grok_bin
2890 X<grok_bin>
2891
2892 converts a string representing a binary number to numeric form.
2893
2894 On entry I<start> and I<*len> give the string to scan, I<*flags> gives
2895 conversion flags, and I<result> should be NULL or a pointer to an NV.
2896 The scan stops at the end of the string, or the first invalid character.
2897 Unless C<PERL_SCAN_SILENT_ILLDIGIT> is set in I<*flags>, encountering an
2898 invalid character will also trigger a warning.
2899 On return I<*len> is set to the length of the scanned string,
2900 and I<*flags> gives output flags.
2901
2902 If the value is <= C<UV_MAX> it is returned as a UV, the output flags are clear,
2903 and nothing is written to I<*result>. If the value is > UV_MAX C<grok_bin>
2904 returns UV_MAX, sets C<PERL_SCAN_GREATER_THAN_UV_MAX> in the output flags,
2905 and writes the value to I<*result> (or the value is discarded if I<result>
2906 is NULL).
2907
2908 The binary number may optionally be prefixed with "0b" or "b" unless
2909 C<PERL_SCAN_DISALLOW_PREFIX> is set in I<*flags> on entry. If
2910 C<PERL_SCAN_ALLOW_UNDERSCORES> is set in I<*flags> then the binary
2911 number may use '_' characters to separate digits.
2912
2913         UV      grok_bin(const char* start, STRLEN* len_p, I32* flags, NV *result)
2914
2915 =for hackers
2916 Found in file numeric.c
2917
2918 =item grok_hex
2919 X<grok_hex>
2920
2921 converts a string representing a hex number to numeric form.
2922
2923 On entry I<start> and I<*len> give the string to scan, I<*flags> gives
2924 conversion flags, and I<result> should be NULL or a pointer to an NV.
2925 The scan stops at the end of the string, or the first invalid character.
2926 Unless C<PERL_SCAN_SILENT_ILLDIGIT> is set in I<*flags>, encountering an
2927 invalid character will also trigger a warning.
2928 On return I<*len> is set to the length of the scanned string,
2929 and I<*flags> gives output flags.
2930
2931 If the value is <= UV_MAX it is returned as a UV, the output flags are clear,
2932 and nothing is written to I<*result>. If the value is > UV_MAX C<grok_hex>
2933 returns UV_MAX, sets C<PERL_SCAN_GREATER_THAN_UV_MAX> in the output flags,
2934 and writes the value to I<*result> (or the value is discarded if I<result>
2935 is NULL).
2936
2937 The hex number may optionally be prefixed with "0x" or "x" unless
2938 C<PERL_SCAN_DISALLOW_PREFIX> is set in I<*flags> on entry. If
2939 C<PERL_SCAN_ALLOW_UNDERSCORES> is set in I<*flags> then the hex
2940 number may use '_' characters to separate digits.
2941
2942         UV      grok_hex(const char* start, STRLEN* len_p, I32* flags, NV *result)
2943
2944 =for hackers
2945 Found in file numeric.c
2946
2947 =item grok_number
2948 X<grok_number>
2949
2950 Recognise (or not) a number.  The type of the number is returned
2951 (0 if unrecognised), otherwise it is a bit-ORed combination of
2952 IS_NUMBER_IN_UV, IS_NUMBER_GREATER_THAN_UV_MAX, IS_NUMBER_NOT_INT,
2953 IS_NUMBER_NEG, IS_NUMBER_INFINITY, IS_NUMBER_NAN (defined in perl.h).
2954
2955 If the value of the number can fit an in UV, it is returned in the *valuep
2956 IS_NUMBER_IN_UV will be set to indicate that *valuep is valid, IS_NUMBER_IN_UV
2957 will never be set unless *valuep is valid, but *valuep may have been assigned
2958 to during processing even though IS_NUMBER_IN_UV is not set on return.
2959 If valuep is NULL, IS_NUMBER_IN_UV will be set for the same cases as when
2960 valuep is non-NULL, but no actual assignment (or SEGV) will occur.
2961
2962 IS_NUMBER_NOT_INT will be set with IS_NUMBER_IN_UV if trailing decimals were
2963 seen (in which case *valuep gives the true value truncated to an integer), and
2964 IS_NUMBER_NEG if the number is negative (in which case *valuep holds the
2965 absolute value).  IS_NUMBER_IN_UV is not set if e notation was used or the
2966 number is larger than a UV.
2967
2968         int     grok_number(const char *pv, STRLEN len, UV *valuep)
2969
2970 =for hackers
2971 Found in file numeric.c
2972
2973 =item grok_numeric_radix
2974 X<grok_numeric_radix>
2975
2976 Scan and skip for a numeric decimal separator (radix).
2977
2978         bool    grok_numeric_radix(const char **sp, const char *send)
2979
2980 =for hackers
2981 Found in file numeric.c
2982
2983 =item grok_oct
2984 X<grok_oct>
2985
2986 converts a string representing an octal number to numeric form.
2987
2988 On entry I<start> and I<*len> give the string to scan, I<*flags> gives
2989 conversion flags, and I<result> should be NULL or a pointer to an NV.
2990 The scan stops at the end of the string, or the first invalid character.
2991 Unless C<PERL_SCAN_SILENT_ILLDIGIT> is set in I<*flags>, encountering an
2992 invalid character will also trigger a warning.
2993 On return I<*len> is set to the length of the scanned string,
2994 and I<*flags> gives output flags.
2995
2996 If the value is <= UV_MAX it is returned as a UV, the output flags are clear,
2997 and nothing is written to I<*result>. If the value is > UV_MAX C<grok_oct>
2998 returns UV_MAX, sets C<PERL_SCAN_GREATER_THAN_UV_MAX> in the output flags,
2999 and writes the value to I<*result> (or the value is discarded if I<result>
3000 is NULL).
3001
3002 If C<PERL_SCAN_ALLOW_UNDERSCORES> is set in I<*flags> then the octal
3003 number may use '_' characters to separate digits.
3004
3005         UV      grok_oct(const char* start, STRLEN* len_p, I32* flags, NV *result)
3006
3007 =for hackers
3008 Found in file numeric.c
3009
3010 =item Perl_signbit
3011 X<Perl_signbit>
3012
3013 Return a non-zero integer if the sign bit on an NV is set, and 0 if
3014 it is not.  
3015
3016 If Configure detects this system has a signbit() that will work with
3017 our NVs, then we just use it via the #define in perl.h.  Otherwise,
3018 fall back on this implementation.  As a first pass, this gets everything
3019 right except -0.0.  Alas, catching -0.0 is the main use for this function,
3020 so this is not too helpful yet.  Still, at least we have the scaffolding
3021 in place to support other systems, should that prove useful.
3022
3023
3024 Configure notes:  This function is called 'Perl_signbit' instead of a
3025 plain 'signbit' because it is easy to imagine a system having a signbit()
3026 function or macro that doesn't happen to work with our particular choice
3027 of NVs.  We shouldn't just re-#define signbit as Perl_signbit and expect
3028 the standard system headers to be happy.  Also, this is a no-context
3029 function (no pTHX_) because Perl_signbit() is usually re-#defined in
3030 perl.h as a simple macro call to the system's signbit().
3031 Users should just always call Perl_signbit().
3032
3033 NOTE: this function is experimental and may change or be
3034 removed without notice.
3035
3036         int     Perl_signbit(NV f)
3037
3038 =for hackers
3039 Found in file numeric.c
3040
3041 =item scan_bin
3042 X<scan_bin>
3043
3044 For backwards compatibility. Use C<grok_bin> instead.
3045
3046         NV      scan_bin(const char* start, STRLEN len, STRLEN* retlen)
3047
3048 =for hackers
3049 Found in file numeric.c
3050
3051 =item scan_hex
3052 X<scan_hex>
3053
3054 For backwards compatibility. Use C<grok_hex> instead.
3055
3056         NV      scan_hex(const char* start, STRLEN len, STRLEN* retlen)
3057
3058 =for hackers
3059 Found in file numeric.c
3060
3061 =item scan_oct
3062 X<scan_oct>
3063
3064 For backwards compatibility. Use C<grok_oct> instead.
3065
3066         NV      scan_oct(const char* start, STRLEN len, STRLEN* retlen)
3067
3068 =for hackers
3069 Found in file numeric.c
3070
3071
3072 =back
3073
3074 =head1 Optree Manipulation Functions
3075
3076 =over 8
3077
3078 =item cv_const_sv
3079 X<cv_const_sv>
3080
3081 If C<cv> is a constant sub eligible for inlining. returns the constant
3082 value returned by the sub.  Otherwise, returns NULL.
3083
3084 Constant subs can be created with C<newCONSTSUB> or as described in
3085 L<perlsub/"Constant Functions">.
3086
3087         SV*     cv_const_sv(CV* cv)
3088
3089 =for hackers
3090 Found in file op.c
3091
3092 =item newCONSTSUB
3093 X<newCONSTSUB>
3094
3095 Creates a constant sub equivalent to Perl C<sub FOO () { 123 }> which is
3096 eligible for inlining at compile-time.
3097
3098         CV*     newCONSTSUB(HV* stash, const char* name, SV* sv)
3099
3100 =for hackers
3101 Found in file op.c
3102
3103 =item newXS
3104 X<newXS>
3105
3106 Used by C<xsubpp> to hook up XSUBs as Perl subs.  I<filename> needs to be
3107 static storage, as it is used directly as CvFILE(), without a copy being made.
3108
3109 =for hackers
3110 Found in file op.c
3111
3112
3113 =back
3114
3115 =head1 Pad Data Structures
3116
3117 =over 8
3118
3119 =item pad_sv
3120 X<pad_sv>
3121
3122 Get the value at offset po in the current pad.
3123 Use macro PAD_SV instead of calling this function directly.
3124
3125         SV*     pad_sv(PADOFFSET po)
3126
3127 =for hackers
3128 Found in file pad.c
3129
3130
3131 =back
3132
3133 =head1 Simple Exception Handling Macros
3134
3135 =over 8
3136
3137 =item dXCPT
3138 X<dXCPT>
3139
3140 Set up necessary local variables for exception handling.
3141 See L<perlguts/"Exception Handling">.
3142
3143                 dXCPT;
3144
3145 =for hackers
3146 Found in file XSUB.h
3147
3148 =item XCPT_CATCH
3149 X<XCPT_CATCH>
3150
3151 Introduces a catch block.  See L<perlguts/"Exception Handling">.
3152
3153 =for hackers
3154 Found in file XSUB.h
3155
3156 =item XCPT_RETHROW
3157 X<XCPT_RETHROW>
3158
3159 Rethrows a previously caught exception.  See L<perlguts/"Exception Handling">.
3160
3161                 XCPT_RETHROW;
3162
3163 =for hackers
3164 Found in file XSUB.h
3165
3166 =item XCPT_TRY_END
3167 X<XCPT_TRY_END>
3168
3169 Ends a try block.  See L<perlguts/"Exception Handling">.
3170
3171 =for hackers
3172 Found in file XSUB.h
3173
3174 =item XCPT_TRY_START
3175 X<XCPT_TRY_START>
3176
3177 Starts a try block.  See L<perlguts/"Exception Handling">.
3178
3179 =for hackers
3180 Found in file XSUB.h
3181
3182
3183 =back
3184
3185 =head1 Stack Manipulation Macros
3186
3187 =over 8
3188
3189 =item dMARK
3190 X<dMARK>
3191
3192 Declare a stack marker variable, C<mark>, for the XSUB.  See C<MARK> and
3193 C<dORIGMARK>.
3194
3195                 dMARK;
3196
3197 =for hackers
3198 Found in file pp.h
3199
3200 =item dORIGMARK
3201 X<dORIGMARK>
3202
3203 Saves the original stack mark for the XSUB.  See C<ORIGMARK>.
3204
3205                 dORIGMARK;
3206
3207 =for hackers
3208 Found in file pp.h
3209
3210 =item dSP
3211 X<dSP>
3212
3213 Declares a local copy of perl's stack pointer for the XSUB, available via
3214 the C<SP> macro.  See C<SP>.
3215
3216                 dSP;
3217
3218 =for hackers
3219 Found in file pp.h
3220
3221 =item EXTEND
3222 X<EXTEND>
3223
3224 Used to extend the argument stack for an XSUB's return values. Once
3225 used, guarantees that there is room for at least C<nitems> to be pushed
3226 onto the stack.
3227
3228         void    EXTEND(SP, int nitems)
3229
3230 =for hackers
3231 Found in file pp.h
3232
3233 =item MARK
3234 X<MARK>
3235
3236 Stack marker variable for the XSUB.  See C<dMARK>.
3237
3238 =for hackers
3239 Found in file pp.h
3240
3241 =item mPUSHi
3242 X<mPUSHi>
3243
3244 Push an integer onto the stack.  The stack must have room for this element.
3245 Handles 'set' magic.  Does not use C<TARG>.  See also C<PUSHi>, C<mXPUSHi>
3246 and C<XPUSHi>.
3247
3248         void    mPUSHi(IV iv)
3249
3250 =for hackers
3251 Found in file pp.h
3252
3253 =item mPUSHn
3254 X<mPUSHn>
3255
3256 Push a double onto the stack.  The stack must have room for this element.
3257 Handles 'set' magic.  Does not use C<TARG>.  See also C<PUSHn>, C<mXPUSHn>
3258 and C<XPUSHn>.
3259
3260         void    mPUSHn(NV nv)
3261
3262 =for hackers
3263 Found in file pp.h
3264
3265 =item mPUSHp
3266 X<mPUSHp>
3267
3268 Push a string onto the stack.  The stack must have room for this element.
3269 The C<len> indicates the length of the string.  Handles 'set' magic.  Does
3270 not use C<TARG>.  See also C<PUSHp>, C<mXPUSHp> and C<XPUSHp>.
3271
3272         void    mPUSHp(char* str, STRLEN len)
3273
3274 =for hackers
3275 Found in file pp.h
3276
3277 =item mPUSHu
3278 X<mPUSHu>
3279
3280 Push an unsigned integer onto the stack.  The stack must have room for this
3281 element.  Handles 'set' magic.  Does not use C<TARG>.  See also C<PUSHu>,
3282 C<mXPUSHu> and C<XPUSHu>.
3283
3284         void    mPUSHu(UV uv)
3285
3286 =for hackers
3287 Found in file pp.h
3288
3289 =item mXPUSHi
3290 X<mXPUSHi>
3291
3292 Push an integer onto the stack, extending the stack if necessary.  Handles
3293 'set' magic.  Does not use C<TARG>.  See also C<XPUSHi>, C<mPUSHi> and
3294 C<PUSHi>.
3295
3296         void    mXPUSHi(IV iv)
3297
3298 =for hackers
3299 Found in file pp.h
3300
3301 =item mXPUSHn
3302 X<mXPUSHn>
3303
3304 Push a double onto the stack, extending the stack if necessary.  Handles
3305 'set' magic.  Does not use C<TARG>.  See also C<XPUSHn>, C<mPUSHn> and
3306 C<PUSHn>.
3307
3308         void    mXPUSHn(NV nv)
3309
3310 =for hackers
3311 Found in file pp.h
3312
3313 =item mXPUSHp
3314 X<mXPUSHp>
3315
3316 Push a string onto the stack, extending the stack if necessary.  The C<len>
3317 indicates the length of the string.  Handles 'set' magic.  Does not use
3318 C<TARG>.  See also C<XPUSHp>, C<mPUSHp> and C<PUSHp>.
3319
3320         void    mXPUSHp(char* str, STRLEN len)
3321
3322 =for hackers
3323 Found in file pp.h
3324
3325 =item mXPUSHu
3326 X<mXPUSHu>
3327
3328 Push an unsigned integer onto the stack, extending the stack if necessary.
3329 Handles 'set' magic.  Does not use C<TARG>.  See also C<XPUSHu>, C<mPUSHu>
3330 and C<PUSHu>.
3331
3332         void    mXPUSHu(UV uv)
3333
3334 =for hackers
3335 Found in file pp.h
3336
3337 =item ORIGMARK
3338 X<ORIGMARK>
3339
3340 The original stack mark for the XSUB.  See C<dORIGMARK>.
3341
3342 =for hackers
3343 Found in file pp.h
3344
3345 =item POPi
3346 X<POPi>
3347
3348 Pops an integer off the stack.
3349
3350         IV      POPi
3351
3352 =for hackers
3353 Found in file pp.h
3354
3355 =item POPl
3356 X<POPl>
3357
3358 Pops a long off the stack.
3359
3360         long    POPl
3361
3362 =for hackers
3363 Found in file pp.h
3364
3365 =item POPn
3366 X<POPn>
3367
3368 Pops a double off the stack.
3369
3370         NV      POPn
3371
3372 =for hackers
3373 Found in file pp.h
3374
3375 =item POPp
3376 X<POPp>
3377
3378 Pops a string off the stack. Deprecated. New code should use POPpx.
3379
3380         char*   POPp
3381
3382 =for hackers
3383 Found in file pp.h
3384
3385 =item POPpbytex
3386 X<POPpbytex>
3387
3388 Pops a string off the stack which must consist of bytes i.e. characters < 256.
3389
3390         char*   POPpbytex
3391
3392 =for hackers
3393 Found in file pp.h
3394
3395 =item POPpx
3396 X<POPpx>
3397
3398 Pops a string off the stack.
3399
3400         char*   POPpx
3401
3402 =for hackers
3403 Found in file pp.h
3404
3405 =item POPs
3406 X<POPs>
3407
3408 Pops an SV off the stack.
3409
3410         SV*     POPs
3411
3412 =for hackers
3413 Found in file pp.h
3414
3415 =item PUSHi
3416 X<PUSHi>
3417
3418 Push an integer onto the stack.  The stack must have room for this element.
3419 Handles 'set' magic.  Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be
3420 called to declare it.  Do not call multiple C<TARG>-oriented macros to 
3421 return lists from XSUB's - see C<mPUSHi> instead.  See also C<XPUSHi> and
3422 C<mXPUSHi>.
3423
3424         void    PUSHi(IV iv)
3425
3426 =for hackers
3427 Found in file pp.h
3428
3429 =item PUSHMARK
3430 X<PUSHMARK>
3431
3432 Opening bracket for arguments on a callback.  See C<PUTBACK> and
3433 L<perlcall>.
3434
3435         void    PUSHMARK(SP)
3436
3437 =for hackers
3438 Found in file pp.h
3439
3440 =item PUSHmortal
3441 X<PUSHmortal>
3442
3443 Push a new mortal SV onto the stack.  The stack must have room for this
3444 element.  Does not handle 'set' magic.  Does not use C<TARG>.  See also
3445 C<PUSHs>, C<XPUSHmortal> and C<XPUSHs>.
3446
3447         void    PUSHmortal()
3448
3449 =for hackers
3450 Found in file pp.h
3451
3452 =item PUSHn
3453 X<PUSHn>
3454
3455 Push a double onto the stack.  The stack must have room for this element.
3456 Handles 'set' magic.  Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be
3457 called to declare it.  Do not call multiple C<TARG>-oriented macros to
3458 return lists from XSUB's - see C<mPUSHn> instead.  See also C<XPUSHn> and
3459 C<mXPUSHn>.
3460
3461         void    PUSHn(NV nv)
3462
3463 =for hackers
3464 Found in file pp.h
3465
3466 =item PUSHp
3467 X<PUSHp>
3468
3469 Push a string onto the stack.  The stack must have room for this element.
3470 The C<len> indicates the length of the string.  Handles 'set' magic.  Uses
3471 C<TARG>, so C<dTARGET> or C<dXSTARG> should be called to declare it.  Do not
3472 call multiple C<TARG>-oriented macros to return lists from XSUB's - see
3473 C<mPUSHp> instead.  See also C<XPUSHp> and C<mXPUSHp>.
3474
3475         void    PUSHp(char* str, STRLEN len)
3476
3477 =for hackers
3478 Found in file pp.h
3479
3480 =item PUSHs
3481 X<PUSHs>
3482
3483 Push an SV onto the stack.  The stack must have room for this element.
3484 Does not handle 'set' magic.  Does not use C<TARG>.  See also C<PUSHmortal>,
3485 C<XPUSHs> and C<XPUSHmortal>.
3486
3487         void    PUSHs(SV* sv)
3488
3489 =for hackers
3490 Found in file pp.h
3491
3492 =item PUSHu
3493 X<PUSHu>
3494
3495 Push an unsigned integer onto the stack.  The stack must have room for this
3496 element.  Handles 'set' magic.  Uses C<TARG>, so C<dTARGET> or C<dXSTARG>
3497 should be called to declare it.  Do not call multiple C<TARG>-oriented
3498 macros to return lists from XSUB's - see C<mPUSHu> instead.  See also
3499 C<XPUSHu> and C<mXPUSHu>.
3500
3501         void    PUSHu(UV uv)
3502
3503 =for hackers
3504 Found in file pp.h
3505
3506 =item PUTBACK
3507 X<PUTBACK>
3508
3509 Closing bracket for XSUB arguments.  This is usually handled by C<xsubpp>.
3510 See C<PUSHMARK> and L<perlcall> for other uses.
3511
3512                 PUTBACK;
3513
3514 =for hackers
3515 Found in file pp.h
3516
3517 =item SP
3518 X<SP>
3519
3520 Stack pointer.  This is usually handled by C<xsubpp>.  See C<dSP> and
3521 C<SPAGAIN>.
3522
3523 =for hackers
3524 Found in file pp.h
3525
3526 =item SPAGAIN
3527 X<SPAGAIN>
3528
3529 Refetch the stack pointer.  Used after a callback.  See L<perlcall>.
3530
3531                 SPAGAIN;
3532
3533 =for hackers
3534 Found in file pp.h
3535
3536 =item XPUSHi
3537 X<XPUSHi>
3538
3539 Push an integer onto the stack, extending the stack if necessary.  Handles
3540 'set' magic.  Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be called to
3541 declare it.  Do not call multiple C<TARG>-oriented macros to return lists
3542 from XSUB's - see C<mXPUSHi> instead.  See also C<PUSHi> and C<mPUSHi>.
3543
3544         void    XPUSHi(IV iv)
3545
3546 =for hackers
3547 Found in file pp.h
3548
3549 =item XPUSHmortal
3550 X<XPUSHmortal>
3551
3552 Push a new mortal SV onto the stack, extending the stack if necessary.  Does
3553 not handle 'set' magic.  Does not use C<TARG>.  See also C<XPUSHs>,
3554 C<PUSHmortal> and C<PUSHs>.
3555
3556         void    XPUSHmortal()
3557
3558 =for hackers
3559 Found in file pp.h
3560
3561 =item XPUSHn
3562 X<XPUSHn>
3563
3564 Push a double onto the stack, extending the stack if necessary.  Handles
3565 'set' magic.  Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be called to
3566 declare it.  Do not call multiple C<TARG>-oriented macros to return lists
3567 from XSUB's - see C<mXPUSHn> instead.  See also C<PUSHn> and C<mPUSHn>.
3568
3569         void    XPUSHn(NV nv)
3570
3571 =for hackers
3572 Found in file pp.h
3573
3574 =item XPUSHp
3575 X<XPUSHp>
3576
3577 Push a string onto the stack, extending the stack if necessary.  The C<len>
3578 indicates the length of the string.  Handles 'set' magic.  Uses C<TARG>, so
3579 C<dTARGET> or C<dXSTARG> should be called to declare it.  Do not call
3580 multiple C<TARG>-oriented macros to return lists from XSUB's - see
3581 C<mXPUSHp> instead.  See also C<PUSHp> and C<mPUSHp>.
3582
3583         void    XPUSHp(char* str, STRLEN len)
3584
3585 =for hackers
3586 Found in file pp.h
3587
3588 =item XPUSHs
3589 X<XPUSHs>
3590
3591 Push an SV onto the stack, extending the stack if necessary.  Does not
3592 handle 'set' magic.  Does not use C<TARG>.  See also C<XPUSHmortal>,
3593 C<PUSHs> and C<PUSHmortal>.
3594
3595         void    XPUSHs(SV* sv)
3596
3597 =for hackers
3598 Found in file pp.h
3599
3600 =item XPUSHu
3601 X<XPUSHu>
3602
3603 Push an unsigned integer onto the stack, extending the stack if necessary.
3604 Handles 'set' magic.  Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be
3605 called to declare it.  Do not call multiple C<TARG>-oriented macros to
3606 return lists from XSUB's - see C<mXPUSHu> instead.  See also C<PUSHu> and
3607 C<mPUSHu>.
3608
3609         void    XPUSHu(UV uv)
3610
3611 =for hackers
3612 Found in file pp.h
3613
3614 =item XSRETURN
3615 X<XSRETURN>
3616
3617 Return from XSUB, indicating number of items on the stack.  This is usually
3618 handled by C<xsubpp>.
3619
3620         void    XSRETURN(int nitems)
3621
3622 =for hackers
3623 Found in file XSUB.h
3624
3625 =item XSRETURN_EMPTY
3626 X<XSRETURN_EMPTY>
3627
3628 Return an empty list from an XSUB immediately.
3629
3630                 XSRETURN_EMPTY;
3631
3632 =for hackers
3633 Found in file XSUB.h
3634
3635 =item XSRETURN_IV
3636 X<XSRETURN_IV>
3637
3638 Return an integer from an XSUB immediately.  Uses C<XST_mIV>.
3639
3640         void    XSRETURN_IV(IV iv)
3641
3642 =for hackers
3643 Found in file XSUB.h
3644
3645 =item XSRETURN_NO
3646 X<XSRETURN_NO>
3647
3648 Return C<&PL_sv_no> from an XSUB immediately.  Uses C<XST_mNO>.
3649
3650                 XSRETURN_NO;
3651
3652 =for hackers
3653 Found in file XSUB.h
3654
3655 =item XSRETURN_NV
3656 X<XSRETURN_NV>
3657
3658 Return a double from an XSUB immediately.  Uses C<XST_mNV>.
3659
3660         void    XSRETURN_NV(NV nv)
3661
3662 =for hackers
3663 Found in file XSUB.h
3664
3665 =item XSRETURN_PV
3666 X<XSRETURN_PV>
3667
3668 Return a copy of a string from an XSUB immediately.  Uses C<XST_mPV>.
3669
3670         void    XSRETURN_PV(char* str)
3671
3672 =for hackers
3673 Found in file XSUB.h
3674
3675 =item XSRETURN_UNDEF
3676 X<XSRETURN_UNDEF>
3677
3678 Return C<&PL_sv_undef> from an XSUB immediately.  Uses C<XST_mUNDEF>.
3679
3680                 XSRETURN_UNDEF;
3681
3682 =for hackers
3683 Found in file XSUB.h
3684
3685 =item XSRETURN_UV
3686 X<XSRETURN_UV>
3687
3688 Return an integer from an XSUB immediately.  Uses C<XST_mUV>.
3689
3690         void    XSRETURN_UV(IV uv)
3691
3692 =for hackers
3693 Found in file XSUB.h
3694
3695 =item XSRETURN_YES
3696 X<XSRETURN_YES>
3697
3698 Return C<&PL_sv_yes> from an XSUB immediately.  Uses C<XST_mYES>.
3699
3700                 XSRETURN_YES;
3701
3702 =for hackers
3703 Found in file XSUB.h
3704
3705 =item XST_mIV
3706 X<XST_mIV>
3707
3708 Place an integer into the specified position C<pos> on the stack.  The
3709 value is stored in a new mortal SV.
3710
3711         void    XST_mIV(int pos, IV iv)
3712
3713 =for hackers
3714 Found in file XSUB.h
3715
3716 =item XST_mNO
3717 X<XST_mNO>
3718
3719 Place C<&PL_sv_no> into the specified position C<pos> on the
3720 stack.
3721
3722         void    XST_mNO(int pos)
3723
3724 =for hackers
3725 Found in file XSUB.h
3726
3727 =item XST_mNV
3728 X<XST_mNV>
3729
3730 Place a double into the specified position C<pos> on the stack.  The value
3731 is stored in a new mortal SV.
3732
3733         void    XST_mNV(int pos, NV nv)
3734
3735 =for hackers
3736 Found in file XSUB.h
3737
3738 =item XST_mPV
3739 X<XST_mPV>
3740
3741 Place a copy of a string into the specified position C<pos> on the stack. 
3742 The value is stored in a new mortal SV.
3743
3744         void    XST_mPV(int pos, char* str)
3745
3746 =for hackers
3747 Found in file XSUB.h
3748
3749 =item XST_mUNDEF
3750 X<XST_mUNDEF>
3751
3752 Place C<&PL_sv_undef> into the specified position C<pos> on the
3753 stack.
3754
3755         void    XST_mUNDEF(int pos)
3756
3757 =for hackers
3758 Found in file XSUB.h
3759
3760 =item XST_mYES
3761 X<XST_mYES>
3762
3763 Place C<&PL_sv_yes> into the specified position C<pos> on the
3764 stack.
3765
3766         void    XST_mYES(int pos)
3767
3768 =for hackers
3769 Found in file XSUB.h
3770
3771
3772 =back
3773
3774 =head1 SV Flags
3775
3776 =over 8
3777
3778 =item svtype
3779 X<svtype>
3780
3781 An enum of flags for Perl types.  These are found in the file B<sv.h>
3782 in the C<svtype> enum.  Test these flags with the C<SvTYPE> macro.
3783
3784 =for hackers
3785 Found in file sv.h
3786
3787 =item SVt_IV
3788 X<SVt_IV>
3789
3790 Integer type flag for scalars.  See C<svtype>.
3791
3792 =for hackers
3793 Found in file sv.h
3794
3795 =item SVt_NV
3796 X<SVt_NV>
3797
3798 Double type flag for scalars.  See C<svtype>.
3799
3800 =for hackers
3801 Found in file sv.h
3802
3803 =item SVt_PV
3804 X<SVt_PV>
3805
3806 Pointer type flag for scalars.  See C<svtype>.
3807
3808 =for hackers
3809 Found in file sv.h
3810
3811 =item SVt_PVAV
3812 X<SVt_PVAV>
3813
3814 Type flag for arrays.  See C<svtype>.
3815
3816 =for hackers
3817 Found in file sv.h
3818
3819 =item SVt_PVCV
3820 X<SVt_PVCV>
3821
3822 Type flag for code refs.  See C<svtype>.
3823
3824 =for hackers
3825 Found in file sv.h
3826
3827 =item SVt_PVHV
3828 X<SVt_PVHV>
3829
3830 Type flag for hashes.  See C<svtype>.
3831
3832 =for hackers
3833 Found in file sv.h
3834
3835 =item SVt_PVMG
3836 X<SVt_PVMG>
3837
3838 Type flag for blessed scalars.  See C<svtype>.
3839
3840 =for hackers
3841 Found in file sv.h
3842
3843
3844 =back
3845
3846 =head1 SV Manipulation Functions
3847
3848 =over 8
3849
3850 =item get_sv
3851 X<get_sv>
3852
3853 Returns the SV of the specified Perl scalar.  If C<create> is set and the
3854 Perl variable does not exist then it will be created.  If C<create> is not
3855 set and the variable does not exist then NULL is returned.
3856
3857 NOTE: the perl_ form of this function is deprecated.
3858
3859         SV*     get_sv(const char* name, I32 create)
3860
3861 =for hackers
3862 Found in file perl.c
3863
3864 =item newRV_inc
3865 X<newRV_inc>
3866
3867 Creates an RV wrapper for an SV.  The reference count for the original SV is
3868 incremented.
3869
3870         SV*     newRV_inc(SV* sv)
3871
3872 =for hackers
3873 Found in file sv.h
3874
3875 =item SvCUR
3876 X<SvCUR>
3877
3878 Returns the length of the string which is in the SV.  See C<SvLEN>.
3879
3880         STRLEN  SvCUR(SV* sv)
3881
3882 =for hackers
3883 Found in file sv.h
3884
3885 =item SvCUR_set
3886 X<SvCUR_set>
3887
3888 Set the current length of the string which is in the SV.  See C<SvCUR>
3889 and C<SvIV_set>.
3890
3891         void    SvCUR_set(SV* sv, STRLEN len)
3892
3893 =for hackers
3894 Found in file sv.h
3895
3896 =item SvEND
3897 X<SvEND>
3898
3899 Returns a pointer to the last character in the string which is in the SV.
3900 See C<SvCUR>.  Access the character as *(SvEND(sv)).
3901
3902         char*   SvEND(SV* sv)
3903
3904 =for hackers
3905 Found in file sv.h
3906
3907 =item SvGAMAGIC
3908 X<SvGAMAGIC>
3909
3910 Returns true if the SV has get magic or overloading. If either is true then
3911 the scalar is active data, and has the potential to return a new value every
3912 time it is accessed. Hence you must be careful to only read it once per user
3913 logical operation and work with that returned value. If neither is true then
3914 the scalar's value cannot change unless written to.
3915
3916         char*   SvGAMAGIC(SV* sv)
3917
3918 =for hackers
3919 Found in file sv.h
3920
3921 =item SvGROW
3922 X<SvGROW>
3923
3924 Expands the character buffer in the SV so that it has room for the
3925 indicated number of bytes (remember to reserve space for an extra trailing
3926 NUL character).  Calls C<sv_grow> to perform the expansion if necessary.
3927 Returns a pointer to the character buffer.
3928
3929         char *  SvGROW(SV* sv, STRLEN len)
3930
3931 =for hackers
3932 Found in file sv.h
3933
3934 =item SvIOK
3935 X<SvIOK>
3936
3937 Returns a U32 value indicating whether the SV contains an integer.
3938
3939         U32     SvIOK(SV* sv)
3940
3941 =for hackers
3942 Found in file sv.h
3943
3944 =item SvIOKp
3945 X<SvIOKp>
3946
3947 Returns a U32 value indicating whether the SV contains an integer.  Checks
3948 the B<private> setting.  Use C<SvIOK>.
3949
3950         U32     SvIOKp(SV* sv)
3951
3952 =for hackers
3953 Found in file sv.h
3954
3955 =item SvIOK_notUV
3956 X<SvIOK_notUV>
3957
3958 Returns a boolean indicating whether the SV contains a signed integer.
3959
3960         bool    SvIOK_notUV(SV* sv)
3961
3962 =for hackers
3963 Found in file sv.h
3964
3965 =item SvIOK_off
3966 X<SvIOK_off>
3967
3968 Unsets the IV status of an SV.
3969
3970         void    SvIOK_off(SV* sv)
3971
3972 =for hackers
3973 Found in file sv.h
3974
3975 =item SvIOK_on
3976 X<SvIOK_on>
3977
3978 Tells an SV that it is an integer.
3979
3980         void    SvIOK_on(SV* sv)
3981
3982 =for hackers
3983 Found in file sv.h
3984
3985 =item SvIOK_only
3986 X<SvIOK_only>
3987
3988 Tells an SV that it is an integer and disables all other OK bits.
3989
3990         void    SvIOK_only(SV* sv)
3991
3992 =for hackers
3993 Found in file sv.h
3994
3995 =item SvIOK_only_UV
3996 X<SvIOK_only_UV>
3997
3998 Tells and SV that it is an unsigned integer and disables all other OK bits.
3999
4000         void    SvIOK_only_UV(SV* sv)
4001
4002 =for hackers
4003 Found in file sv.h
4004
4005 =item SvIOK_UV
4006 X<SvIOK_UV>
4007
4008 Returns a boolean indicating whether the SV contains an unsigned integer.
4009
4010         bool    SvIOK_UV(SV* sv)
4011
4012 =for hackers
4013 Found in file sv.h
4014
4015 =item SvIsCOW
4016 X<SvIsCOW>
4017
4018 Returns a boolean indicating whether the SV is Copy-On-Write. (either shared
4019 hash key scalars, or full Copy On Write scalars if 5.9.0 is configured for
4020 COW)
4021
4022         bool    SvIsCOW(SV* sv)
4023
4024 =for hackers
4025 Found in file sv.h
4026
4027 =item SvIsCOW_shared_hash
4028 X<SvIsCOW_shared_hash>
4029
4030 Returns a boolean indicating whether the SV is Copy-On-Write shared hash key
4031 scalar.
4032
4033         bool    SvIsCOW_shared_hash(SV* sv)
4034
4035 =for hackers
4036 Found in file sv.h
4037
4038 =item SvIV
4039 X<SvIV>
4040
4041 Coerces the given SV to an integer and returns it. See C<SvIVx> for a
4042 version which guarantees to evaluate sv only once.
4043
4044         IV      SvIV(SV* sv)
4045
4046 =for hackers
4047 Found in file sv.h
4048
4049 =item SvIVX
4050 X<SvIVX>
4051
4052 Returns the raw value in the SV's IV slot, without checks or conversions.
4053 Only use when you are sure SvIOK is true. See also C<SvIV()>.
4054
4055         IV      SvIVX(SV* sv)
4056
4057 =for hackers
4058 Found in file sv.h
4059
4060 =item SvIVx
4061 X<SvIVx>
4062
4063 Coerces the given SV to an integer and returns it. Guarantees to evaluate
4064 C<sv> only once. Only use this if C<sv> is an expression with side effects,
4065 otherwise use the more efficient C<SvIV>.
4066
4067         IV      SvIVx(SV* sv)
4068
4069 =for hackers
4070 Found in file sv.h
4071
4072 =item SvIV_nomg
4073 X<SvIV_nomg>
4074
4075 Like C<SvIV> but doesn't process magic.
4076
4077         IV      SvIV_nomg(SV* sv)
4078
4079 =for hackers
4080 Found in file sv.h
4081
4082 =item SvIV_set
4083 X<SvIV_set>
4084
4085 Set the value of the IV pointer in sv to val.  It is possible to perform
4086 the same function of this macro with an lvalue assignment to C<SvIVX>.
4087 With future Perls, however, it will be more efficient to use 
4088 C<SvIV_set> instead of the lvalue assignment to C<SvIVX>.
4089
4090         void    SvIV_set(SV* sv, IV val)
4091
4092 =for hackers
4093 Found in file sv.h
4094
4095 =item SvLEN
4096 X<SvLEN>
4097
4098 Returns the size of the string buffer in the SV, not including any part
4099 attributable to C<SvOOK>.  See C<SvCUR>.
4100
4101         STRLEN  SvLEN(SV* sv)
4102
4103 =for hackers
4104 Found in file sv.h
4105
4106 =item SvLEN_set
4107 X<SvLEN_set>
4108
4109 Set the actual length of the string which is in the SV.  See C<SvIV_set>.
4110
4111         void    SvLEN_set(SV* sv, STRLEN len)
4112
4113 =for hackers
4114 Found in file sv.h
4115
4116 =item SvMAGIC_set
4117 X<SvMAGIC_set>
4118
4119 Set the value of the MAGIC pointer in sv to val.  See C<SvIV_set>.
4120
4121         void    SvMAGIC_set(SV* sv, MAGIC* val)
4122
4123 =for hackers
4124 Found in file sv.h
4125
4126 =item SvNIOK
4127 X<SvNIOK>
4128
4129 Returns a U32 value indicating whether the SV contains a number, integer or
4130 double.
4131
4132         U32     SvNIOK(SV* sv)
4133
4134 =for hackers
4135 Found in file sv.h
4136
4137 =item SvNIOKp
4138 X<SvNIOKp>
4139
4140 Returns a U32 value indicating whether the SV contains a number, integer or
4141 double.  Checks the B<private> setting.  Use C<SvNIOK>.
4142
4143         U32     SvNIOKp(SV* sv)
4144
4145 =for hackers
4146 Found in file sv.h
4147
4148 =item SvNIOK_off
4149 X<SvNIOK_off>
4150
4151 Unsets the NV/IV status of an SV.
4152
4153         void    SvNIOK_off(SV* sv)
4154
4155 =for hackers
4156 Found in file sv.h
4157
4158 =item SvNOK
4159 X<SvNOK>
4160
4161 Returns a U32 value indicating whether the SV contains a double.
4162
4163         U32     SvNOK(SV* sv)
4164
4165 =for hackers
4166 Found in file sv.h
4167
4168 =item SvNOKp
4169 X<SvNOKp>
4170
4171 Returns a U32 value indicating whether the SV contains a double.  Checks the
4172 B<private> setting.  Use C<SvNOK>.
4173
4174         U32     SvNOKp(SV* sv)
4175
4176 =for hackers
4177 Found in file sv.h
4178
4179 =item SvNOK_off
4180 X<SvNOK_off>
4181
4182 Unsets the NV status of an SV.
4183
4184         void    SvNOK_off(SV* sv)
4185
4186 =for hackers
4187 Found in file sv.h
4188
4189 =item SvNOK_on
4190 X<SvNOK_on>
4191
4192 Tells an SV that it is a double.
4193
4194         void    SvNOK_on(SV* sv)
4195
4196 =for hackers
4197 Found in file sv.h
4198
4199 =item SvNOK_only
4200 X<SvNOK_only>
4201
4202 Tells an SV that it is a double and disables all other OK bits.
4203
4204         void    SvNOK_only(SV* sv)
4205
4206 =for hackers
4207 Found in file sv.h
4208
4209 =item SvNV
4210 X<SvNV>
4211
4212 Coerce the given SV to a double and return it. See C<SvNVx> for a version
4213 which guarantees to evaluate sv only once.
4214
4215         NV      SvNV(SV* sv)
4216
4217 =for hackers
4218 Found in file sv.h
4219
4220 =item SvNVX
4221 X<SvNVX>
4222
4223 Returns the raw value in the SV's NV slot, without checks or conversions.
4224 Only use when you are sure SvNOK is true. See also C<SvNV()>.
4225
4226         NV      SvNVX(SV* sv)
4227
4228 =for hackers
4229 Found in file sv.h
4230
4231 =item SvNVx
4232 X<SvNVx>
4233
4234 Coerces the given SV to a double and returns it. Guarantees to evaluate
4235 C<sv> only once. Only use this if C<sv> is an expression with side effects,
4236 otherwise use the more efficient C<SvNV>.
4237
4238         NV      SvNVx(SV* sv)
4239
4240 =for hackers
4241 Found in file sv.h
4242
4243 =item SvNV_set
4244 X<SvNV_set>
4245
4246 Set the value of the NV pointer in sv to val.  See C<SvIV_set>.
4247
4248         void    SvNV_set(SV* sv, NV val)
4249
4250 =for hackers
4251 Found in file sv.h
4252
4253 =item SvOK
4254 X<SvOK>
4255
4256 Returns a U32 value indicating whether the value is an SV. It also tells
4257 whether the value is defined or not.
4258
4259         U32     SvOK(SV* sv)
4260
4261 =for hackers
4262 Found in file sv.h
4263
4264 =item SvOOK
4265 X<SvOOK>
4266
4267 Returns a U32 indicating whether the SvIVX is a valid offset value for
4268 the SvPVX.  This hack is used internally to speed up removal of characters
4269 from the beginning of a SvPV.  When SvOOK is true, then the start of the
4270 allocated string buffer is really (SvPVX - SvIVX).
4271
4272         U32     SvOOK(SV* sv)
4273
4274 =for hackers
4275 Found in file sv.h
4276
4277 =item SvPOK
4278 X<SvPOK>
4279
4280 Returns a U32 value indicating whether the SV contains a character
4281 string.
4282
4283         U32     SvPOK(SV* sv)
4284
4285 =for hackers
4286 Found in file sv.h
4287
4288 =item SvPOKp
4289 X<SvPOKp>
4290
4291 Returns a U32 value indicating whether the SV contains a character string.
4292 Checks the B<private> setting.  Use C<SvPOK>.
4293
4294         U32     SvPOKp(SV* sv)
4295
4296 =for hackers
4297 Found in file sv.h
4298
4299 =item SvPOK_off
4300 X<SvPOK_off>
4301
4302 Unsets the PV status of an SV.
4303
4304         void    SvPOK_off(SV* sv)
4305
4306 =for hackers
4307 Found in file sv.h
4308
4309 =item SvPOK_on
4310 X<SvPOK_on>
4311
4312 Tells an SV that it is a string.
4313
4314         void    SvPOK_on(SV* sv)
4315
4316 =for hackers
4317 Found in file sv.h
4318
4319 =item SvPOK_only
4320 X<SvPOK_only>
4321
4322 Tells an SV that it is a string and disables all other OK bits.
4323 Will also turn off the UTF-8 status.
4324
4325         void    SvPOK_only(SV* sv)
4326
4327 =for hackers
4328 Found in file sv.h
4329
4330 =item SvPOK_only_UTF8
4331 X<SvPOK_only_UTF8>
4332
4333 Tells an SV that it is a string and disables all other OK bits,
4334 and leaves the UTF-8 status as it was.
4335
4336         void    SvPOK_only_UTF8(SV* sv)
4337
4338 =for hackers
4339 Found in file sv.h
4340
4341 =item SvPV
4342 X<SvPV>
4343
4344 Returns a pointer to the string in the SV, or a stringified form of
4345 the SV if the SV does not contain a string.  The SV may cache the
4346 stringified version becoming C<SvPOK>.  Handles 'get' magic. See also
4347 C<SvPVx> for a version which guarantees to evaluate sv only once.
4348
4349         char*   SvPV(SV* sv, STRLEN len)
4350
4351 =for hackers
4352 Found in file sv.h
4353
4354 =item SvPVbyte
4355 X<SvPVbyte>
4356
4357 Like C<SvPV>, but converts sv to byte representation first if necessary.
4358
4359         char*   SvPVbyte(SV* sv, STRLEN len)
4360
4361 =for hackers
4362 Found in file sv.h
4363
4364 =item SvPVbytex
4365 X<SvPVbytex>
4366
4367 Like C<SvPV>, but converts sv to byte representation first if necessary.
4368 Guarantees to evaluate sv only once; use the more efficient C<SvPVbyte>
4369 otherwise.
4370
4371         char*   SvPVbytex(SV* sv, STRLEN len)
4372
4373 =for hackers
4374 Found in file sv.h
4375
4376 =item SvPVbytex_force
4377 X<SvPVbytex_force>
4378
4379 Like C<SvPV_force>, but converts sv to byte representation first if necessary.
4380 Guarantees to evaluate sv only once; use the more efficient C<SvPVbyte_force>
4381 otherwise.
4382
4383         char*   SvPVbytex_force(SV* sv, STRLEN len)
4384
4385 =for hackers
4386 Found in file sv.h
4387
4388 =item SvPVbyte_force
4389 X<SvPVbyte_force>
4390
4391 Like C<SvPV_force>, but converts sv to byte representation first if necessary.
4392
4393         char*   SvPVbyte_force(SV* sv, STRLEN len)
4394
4395 =for hackers
4396 Found in file sv.h
4397
4398 =item SvPVbyte_nolen
4399 X<SvPVbyte_nolen>
4400
4401 Like C<SvPV_nolen>, but converts sv to byte representation first if necessary.
4402
4403         char*   SvPVbyte_nolen(SV* sv)
4404
4405 =for hackers
4406 Found in file sv.h
4407
4408 =item SvPVutf8
4409 X<SvPVutf8>
4410
4411 Like C<SvPV>, but converts sv to utf8 first if necessary.
4412
4413         char*   SvPVutf8(SV* sv, STRLEN len)
4414
4415 =for hackers
4416 Found in file sv.h
4417
4418 =item SvPVutf8x
4419 X<SvPVutf8x>
4420
4421 Like C<SvPV>, but converts sv to utf8 first if necessary.
4422 Guarantees to evaluate sv only once; use the more efficient C<SvPVutf8>
4423 otherwise.
4424
4425         char*   SvPVutf8x(SV* sv, STRLEN len)
4426
4427 =for hackers
4428 Found in file sv.h
4429
4430 =item SvPVutf8x_force
4431 X<SvPVutf8x_force>
4432
4433 Like C<SvPV_force>, but converts sv to utf8 first if necessary.
4434 Guarantees to evaluate sv only once; use the more efficient C<SvPVutf8_force>
4435 otherwise.
4436
4437         char*   SvPVutf8x_force(SV* sv, STRLEN len)
4438
4439 =for hackers
4440 Found in file sv.h
4441
4442 =item SvPVutf8_force
4443 X<SvPVutf8_force>
4444
4445 Like C<SvPV_force>, but converts sv to utf8 first if necessary.
4446
4447         char*   SvPVutf8_force(SV* sv, STRLEN len)
4448
4449 =for hackers
4450 Found in file sv.h
4451
4452 =item SvPVutf8_nolen
4453 X<SvPVutf8_nolen>
4454
4455 Like C<SvPV_nolen>, but converts sv to utf8 first if necessary.
4456
4457         char*   SvPVutf8_nolen(SV* sv)
4458
4459 =for hackers
4460 Found in file sv.h
4461
4462 =item SvPVX
4463 X<SvPVX>
4464
4465 Returns a pointer to the physical string in the SV.  The SV must contain a
4466 string.
4467
4468         char*   SvPVX(SV* sv)
4469
4470 =for hackers
4471 Found in file sv.h
4472
4473 =item SvPVx
4474 X<SvPVx>
4475
4476 A version of C<SvPV> which guarantees to evaluate C<sv> only once.
4477 Only use this if C<sv> is an expression with side effects, otherwise use the
4478 more efficient C<SvPVX>.
4479
4480         char*   SvPVx(SV* sv, STRLEN len)
4481
4482 =for hackers
4483 Found in file sv.h
4484
4485 =item SvPV_force
4486 X<SvPV_force>
4487
4488 Like C<SvPV> but will force the SV into containing just a string
4489 (C<SvPOK_only>).  You want force if you are going to update the C<SvPVX>
4490 directly.
4491
4492         char*   SvPV_force(SV* sv, STRLEN len)
4493
4494 =for hackers
4495 Found in file sv.h
4496
4497 =item SvPV_force_nomg
4498 X<SvPV_force_nomg>
4499
4500 Like C<SvPV> but will force the SV into containing just a string
4501 (C<SvPOK_only>).  You want force if you are going to update the C<SvPVX>
4502 directly. Doesn't process magic.
4503
4504         char*   SvPV_force_nomg(SV* sv, STRLEN len)
4505
4506 =for hackers
4507 Found in file sv.h
4508
4509 =item SvPV_nolen
4510 X<SvPV_nolen>
4511
4512 Returns a pointer to the string in the SV, or a stringified form of
4513 the SV if the SV does not contain a string.  The SV may cache the
4514 stringified form becoming C<SvPOK>.  Handles 'get' magic.
4515
4516         char*   SvPV_nolen(SV* sv)
4517
4518 =for hackers
4519 Found in file sv.h
4520
4521 =item SvPV_nomg
4522 X<SvPV_nomg>
4523
4524 Like C<SvPV> but doesn't process magic.
4525
4526         char*   SvPV_nomg(SV* sv, STRLEN len)
4527
4528 =for hackers
4529 Found in file sv.h
4530
4531 =item SvPV_set
4532 X<SvPV_set>
4533
4534 Set the value of the PV pointer in sv to val.  See C<SvIV_set>.
4535
4536         void    SvPV_set(SV* sv, char* val)
4537
4538 =for hackers
4539 Found in file sv.h
4540
4541 =item SvREFCNT
4542 X<SvREFCNT>
4543
4544 Returns the value of the object's reference count.
4545
4546         U32     SvREFCNT(SV* sv)
4547
4548 =for hackers
4549 Found in file sv.h
4550
4551 =item SvREFCNT_dec
4552 X<SvREFCNT_dec>
4553
4554 Decrements the reference count of the given SV.
4555
4556         void    SvREFCNT_dec(SV* sv)
4557
4558 =for hackers
4559 Found in file sv.h
4560
4561 =item SvREFCNT_inc
4562 X<SvREFCNT_inc>
4563
4564 Increments the reference count of the given SV.
4565
4566 All of the following SvREFCNT_inc* macros are optimized versions of
4567 SvREFCNT_inc, and can be replaced with SvREFCNT_inc.
4568
4569         SV*     SvREFCNT_inc(SV* sv)
4570
4571 =for hackers
4572 Found in file sv.h
4573
4574 =item SvREFCNT_inc_NN
4575 X<SvREFCNT_inc_NN>
4576
4577 Same as SvREFCNT_inc, but can only be used if you know I<sv>
4578 is not NULL.  Since we don't have to check the NULLness, it's faster
4579 and smaller.
4580
4581         SV*     SvREFCNT_inc_NN(SV* sv)
4582
4583 =for hackers
4584 Found in file sv.h
4585
4586 =item SvREFCNT_inc_simple
4587 X<SvREFCNT_inc_simple>
4588
4589 Same as SvREFCNT_inc, but can only be used with expressions without side
4590 effects.  Since we don't have to store a temporary value, it's faster.
4591
4592         SV*     SvREFCNT_inc_simple(SV* sv)
4593
4594 =for hackers
4595 Found in file sv.h
4596
4597 =item SvREFCNT_inc_simple_NN
4598 X<SvREFCNT_inc_simple_NN>
4599
4600 Same as SvREFCNT_inc_simple, but can only be used if you know I<sv>
4601 is not NULL.  Since we don't have to check the NULLness, it's faster
4602 and smaller.
4603
4604         SV*     SvREFCNT_inc_simple_NN(SV* sv)
4605
4606 =for hackers
4607 Found in file sv.h
4608
4609 =item SvREFCNT_inc_simple_void
4610 X<SvREFCNT_inc_simple_void>
4611
4612 Same as SvREFCNT_inc_simple, but can only be used if you don't need the
4613 return value.  The macro doesn't need to return a meaningful value.
4614
4615         void    SvREFCNT_inc_simple_void(SV* sv)
4616
4617 =for hackers
4618 Found in file sv.h
4619
4620 =item SvREFCNT_inc_simple_void_NN
4621 X<SvREFCNT_inc_simple_void_NN>
4622
4623 Same as SvREFCNT_inc, but can only be used if you don't need the return
4624 value, and you know that I<sv> is not NULL.  The macro doesn't need
4625 to return a meaningful value, or check for NULLness, so it's smaller
4626 and faster.
4627
4628         void    SvREFCNT_inc_simple_void_NN(SV* sv)
4629
4630 =for hackers
4631 Found in file sv.h
4632
4633 =item SvREFCNT_inc_void
4634 X<SvREFCNT_inc_void>
4635
4636 Same as SvREFCNT_inc, but can only be used if you don't need the
4637 return value.  The macro doesn't need to return a meaningful value.
4638
4639         void    SvREFCNT_inc_void(SV* sv)
4640
4641 =for hackers
4642 Found in file sv.h
4643
4644 =item SvREFCNT_inc_void_NN
4645 X<SvREFCNT_inc_void_NN>
4646
4647 Same as SvREFCNT_inc, but can only be used if you don't need the return
4648 value, and you know that I<sv> is not NULL.  The macro doesn't need
4649 to return a meaningful value, or check for NULLness, so it's smaller
4650 and faster.
4651
4652         void    SvREFCNT_inc_void_NN(SV* sv)
4653
4654 =for hackers
4655 Found in file sv.h
4656
4657 =item SvROK
4658 X<SvROK>
4659
4660 Tests if the SV is an RV.
4661
4662         U32     SvROK(SV* sv)
4663
4664 =for hackers
4665 Found in file sv.h
4666
4667 =item SvROK_off
4668 X<SvROK_off>
4669
4670 Unsets the RV status of an SV.
4671
4672         void    SvROK_off(SV* sv)
4673
4674 =for hackers
4675 Found in file sv.h
4676
4677 =item SvROK_on
4678 X<SvROK_on>
4679
4680 Tells an SV that it is an RV.
4681
4682         void    SvROK_on(SV* sv)
4683
4684 =for hackers
4685 Found in file sv.h
4686
4687 =item SvRV
4688 X<SvRV>
4689
4690 Dereferences an RV to return the SV.
4691
4692         SV*     SvRV(SV* sv)
4693
4694 =for hackers
4695 Found in file sv.h
4696
4697 =item SvRV_set
4698 X<SvRV_set>
4699
4700 Set the value of the RV pointer in sv to val.  See C<SvIV_set>.
4701
4702         void    SvRV_set(SV* sv, SV* val)
4703
4704 =for hackers
4705 Found in file sv.h
4706
4707 =item SvSTASH
4708 X<SvSTASH>
4709
4710 Returns the stash of the SV.
4711
4712         HV*     SvSTASH(SV* sv)
4713
4714 =for hackers
4715 Found in file sv.h
4716
4717 =item SvSTASH_set
4718 X<SvSTASH_set>
4719
4720 Set the value of the STASH pointer in sv to val.  See C<SvIV_set>.
4721
4722         void    SvSTASH_set(SV* sv, HV* val)
4723
4724 =for hackers
4725 Found in file sv.h
4726
4727 =item SvTAINT
4728 X<SvTAINT>
4729
4730 Taints an SV if tainting is enabled.
4731
4732         void    SvTAINT(SV* sv)
4733
4734 =for hackers
4735 Found in file sv.h
4736
4737 =item SvTAINTED
4738 X<SvTAINTED>
4739
4740 Checks to see if an SV is tainted. Returns TRUE if it is, FALSE if
4741 not.
4742
4743         bool    SvTAINTED(SV* sv)
4744
4745 =for hackers
4746 Found in file sv.h
4747
4748 =item SvTAINTED_off
4749 X<SvTAINTED_off>
4750
4751 Untaints an SV. Be I<very> careful with this routine, as it short-circuits
4752 some of Perl's fundamental security features. XS module authors should not
4753 use this function unless they fully understand all the implications of
4754 unconditionally untainting the value. Untainting should be done in the
4755 standard perl fashion, via a carefully crafted regexp, rather than directly
4756 untainting variables.
4757
4758         void    SvTAINTED_off(SV* sv)
4759
4760 =for hackers
4761 Found in file sv.h
4762
4763 =item SvTAINTED_on
4764 X<SvTAINTED_on>
4765
4766 Marks an SV as tainted if tainting is enabled.
4767
4768         void    SvTAINTED_on(SV* sv)
4769
4770 =for hackers
4771 Found in file sv.h
4772
4773 =item SvTRUE
4774 X<SvTRUE>
4775
4776 Returns a boolean indicating whether Perl would evaluate the SV as true or
4777 false, defined or undefined.  Does not handle 'get' magic.
4778
4779         bool    SvTRUE(SV* sv)
4780
4781 =for hackers
4782 Found in file sv.h
4783
4784 =item SvTYPE
4785 X<SvTYPE>
4786
4787 Returns the type of the SV.  See C<svtype>.
4788
4789         svtype  SvTYPE(SV* sv)
4790
4791 =for hackers
4792 Found in file sv.h
4793
4794 =item SvUOK
4795 X<SvUOK>
4796
4797 Returns a boolean indicating whether the SV contains an unsigned integer.
4798
4799         bool    SvUOK(SV* sv)
4800
4801 =for hackers
4802 Found in file sv.h
4803
4804 =item SvUPGRADE
4805 X<SvUPGRADE>
4806
4807 Used to upgrade an SV to a more complex form.  Uses C<sv_upgrade> to
4808 perform the upgrade if necessary.  See C<svtype>.
4809
4810         void    SvUPGRADE(SV* sv, svtype type)
4811
4812 =for hackers
4813 Found in file sv.h
4814
4815 =item SvUTF8
4816 X<SvUTF8>
4817
4818 Returns a U32 value indicating whether the SV contains UTF-8 encoded data.
4819 Call this after SvPV() in case any call to string overloading updates the
4820 internal flag.
4821
4822         U32     SvUTF8(SV* sv)
4823
4824 =for hackers
4825 Found in file sv.h
4826
4827 =item SvUTF8_off
4828 X<SvUTF8_off>
4829
4830 Unsets the UTF-8 status of an SV.
4831
4832         void    SvUTF8_off(SV *sv)
4833
4834 =for hackers
4835 Found in file sv.h
4836
4837 =item SvUTF8_on
4838 X<SvUTF8_on>
4839
4840 Turn on the UTF-8 status of an SV (the data is not changed, just the flag).
4841 Do not use frivolously.
4842
4843         void    SvUTF8_on(SV *sv)
4844
4845 =for hackers
4846 Found in file sv.h
4847
4848 =item SvUV
4849 X<SvUV>
4850
4851 Coerces the given SV to an unsigned integer and returns it.  See C<SvUVx>
4852 for a version which guarantees to evaluate sv only once.
4853
4854         UV      SvUV(SV* sv)
4855
4856 =for hackers
4857 Found in file sv.h
4858
4859 =item SvUVX
4860 X<SvUVX>
4861
4862 Returns the raw value in the SV's UV slot, without checks or conversions.
4863 Only use when you are sure SvIOK is true. See also C<SvUV()>.
4864
4865         UV      SvUVX(SV* sv)
4866
4867 =for hackers
4868 Found in file sv.h
4869
4870 =item SvUVx
4871 X<SvUVx>
4872
4873 Coerces the given SV to an unsigned integer and returns it. Guarantees to
4874 C<sv> only once. Only use this if C<sv> is an expression with side effects,
4875 otherwise use the more efficient C<SvUV>.
4876
4877         UV      SvUVx(SV* sv)
4878
4879 =for hackers
4880 Found in file sv.h
4881
4882 =item SvUV_nomg
4883 X<SvUV_nomg>
4884
4885 Like C<SvUV> but doesn't process magic.
4886
4887         UV      SvUV_nomg(SV* sv)
4888
4889 =for hackers
4890 Found in file sv.h
4891
4892 =item SvUV_set
4893 X<SvUV_set>
4894
4895 Set the value of the UV pointer in sv to val.  See C<SvIV_set>.
4896
4897         void    SvUV_set(SV* sv, UV val)
4898
4899 =for hackers
4900 Found in file sv.h
4901
4902 =item SvVOK
4903 X<SvVOK>
4904
4905 Returns a boolean indicating whether the SV contains a v-string.
4906
4907         bool    SvVOK(SV* sv)
4908
4909 =for hackers
4910 Found in file sv.h
4911
4912 =item sv_catpvn_nomg
4913 X<sv_catpvn_nomg>
4914
4915 Like C<sv_catpvn> but doesn't process magic.
4916
4917         void    sv_catpvn_nomg(SV* sv, const char* ptr, STRLEN len)
4918
4919 =for hackers
4920 Found in file sv.h
4921
4922 =item sv_catsv_nomg
4923 X<sv_catsv_nomg>
4924
4925 Like C<sv_catsv> but doesn't process magic.
4926
4927         void    sv_catsv_nomg(SV* dsv, SV* ssv)
4928
4929 =for hackers
4930 Found in file sv.h
4931
4932 =item sv_derived_from
4933 X<sv_derived_from>
4934
4935 Returns a boolean indicating whether the SV is derived from the specified class
4936 I<at the C level>.  To check derivation at the Perl level, call C<isa()> as a
4937 normal Perl method.
4938
4939         bool    sv_derived_from(SV* sv, const char* name)
4940
4941 =for hackers
4942 Found in file universal.c
4943
4944 =item sv_does
4945 X<sv_does>
4946
4947 Returns a boolean indicating whether the SV performs a specific, named role.
4948 The SV can be a Perl object or the name of a Perl class.
4949
4950         bool    sv_does(SV* sv, const char* name)
4951
4952 =for hackers
4953 Found in file universal.c
4954
4955 =item sv_report_used
4956 X<sv_report_used>
4957
4958 Dump the contents of all SVs not yet freed. (Debugging aid).
4959
4960         void    sv_report_used()
4961
4962 =for hackers
4963 Found in file sv.c
4964
4965 =item sv_setsv_nomg
4966 X<sv_setsv_nomg>
4967
4968 Like C<sv_setsv> but doesn't process magic.
4969
4970         void    sv_setsv_nomg(SV* dsv, SV* ssv)
4971
4972 =for hackers
4973 Found in file sv.h
4974
4975
4976 =back
4977
4978 =head1 SV-Body Allocation
4979
4980 =over 8
4981
4982 =item looks_like_number
4983 X<looks_like_number>
4984
4985 Test if the content of an SV looks like a number (or is a number).
4986 C<Inf> and C<Infinity> are treated as numbers (so will not issue a
4987 non-numeric warning), even if your atof() doesn't grok them.
4988
4989         I32     looks_like_number(SV* sv)
4990
4991 =for hackers
4992 Found in file sv.c
4993
4994 =item newRV_noinc
4995 X<newRV_noinc>
4996
4997 Creates an RV wrapper for an SV.  The reference count for the original
4998 SV is B<not> incremented.
4999
5000         SV*     newRV_noinc(SV* sv)
5001
5002 =for hackers
5003 Found in file sv.c
5004
5005 =item newSV
5006 X<newSV>
5007
5008 Creates a new SV.  A non-zero C<len> parameter indicates the number of
5009 bytes of preallocated string space the SV should have.  An extra byte for a
5010 trailing NUL is also reserved.  (SvPOK is not set for the SV even if string
5011 space is allocated.)  The reference count for the new SV is set to 1.
5012
5013 In 5.9.3, newSV() replaces the older NEWSV() API, and drops the first
5014 parameter, I<x>, a debug aid which allowed callers to identify themselves.
5015 This aid has been superseded by a new build option, PERL_MEM_LOG (see
5016 L<perlhack/PERL_MEM_LOG>).  The older API is still there for use in XS
5017 modules supporting older perls.
5018
5019         SV*     newSV(STRLEN len)
5020
5021 =for hackers
5022 Found in file sv.c
5023
5024 =item newSVhek
5025 X<newSVhek>
5026
5027 Creates a new SV from the hash key structure.  It will generate scalars that
5028 point to the shared string table where possible. Returns a new (undefined)
5029 SV if the hek is NULL.
5030
5031         SV*     newSVhek(const HEK *hek)
5032
5033 =for hackers
5034 Found in file sv.c
5035
5036 =item newSViv
5037 X<newSViv>
5038
5039 Creates a new SV and copies an integer into it.  The reference count for the
5040 SV is set to 1.
5041
5042         SV*     newSViv(IV i)
5043
5044 =for hackers
5045 Found in file sv.c
5046
5047 =item newSVnv
5048 X<newSVnv>
5049
5050 Creates a new SV and copies a floating point value into it.
5051 The reference count for the SV is set to 1.
5052
5053         SV*     newSVnv(NV n)
5054
5055 =for hackers
5056 Found in file sv.c
5057
5058 =item newSVpv
5059 X<newSVpv>
5060
5061 Creates a new SV and copies a string into it.  The reference count for the
5062 SV is set to 1.  If C<len> is zero, Perl will compute the length using
5063 strlen().  For efficiency, consider using C<newSVpvn> instead.
5064
5065         SV*     newSVpv(const char* s, STRLEN len)
5066
5067 =for hackers
5068 Found in file sv.c
5069
5070 =item newSVpvf
5071 X<newSVpvf>
5072
5073 Creates a new SV and initializes it with the string formatted like
5074 C<sprintf>.
5075
5076         SV*     newSVpvf(const char* pat, ...)
5077
5078 =for hackers
5079 Found in file sv.c
5080
5081 =item newSVpvn
5082 X<newSVpvn>
5083
5084 Creates a new SV and copies a string into it.  The reference count for the
5085 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
5086 string.  You are responsible for ensuring that the source string is at least
5087 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
5088
5089         SV*     newSVpvn(const char* s, STRLEN len)
5090
5091 =for hackers
5092 Found in file sv.c
5093
5094 =item newSVpvn_share
5095 X<newSVpvn_share>
5096
5097 Creates a new SV with its SvPVX_const pointing to a shared string in the string
5098 table. If the string does not already exist in the table, it is created
5099 first.  Turns on READONLY and FAKE.  The string's hash is stored in the UV
5100 slot of the SV; if the C<hash> parameter is non-zero, that value is used;
5101 otherwise the hash is computed.  The idea here is that as the string table
5102 is used for shared hash keys these strings will have SvPVX_const == HeKEY and
5103 hash lookup will avoid string compare.
5104
5105         SV*     newSVpvn_share(const char* s, I32 len, U32 hash)
5106
5107 =for hackers
5108 Found in file sv.c
5109
5110 =item newSVpvs
5111 X<newSVpvs>
5112
5113 Like C<newSVpvn>, but takes a literal string instead of a string/length pair.
5114
5115         SV*     newSVpvs(const char* s)
5116
5117 =for hackers
5118 Found in file handy.h
5119
5120 =item newSVpvs_share
5121 X<newSVpvs_share>
5122
5123 Like C<newSVpvn_share>, but takes a literal string instead of a string/length
5124 pair and omits the hash parameter.
5125
5126         SV*     newSVpvs_share(const char* s)
5127
5128 =for hackers
5129 Found in file handy.h
5130
5131 =item newSVrv
5132 X<newSVrv>
5133
5134 Creates a new SV for the RV, C<rv>, to point to.  If C<rv> is not an RV then
5135 it will be upgraded to one.  If C<classname> is non-null then the new SV will
5136 be blessed in the specified package.  The new SV is returned and its
5137 reference count is 1.
5138
5139         SV*     newSVrv(SV* rv, const char* classname)
5140
5141 =for hackers
5142 Found in file sv.c
5143
5144 =item newSVsv
5145 X<newSVsv>
5146
5147 Creates a new SV which is an exact duplicate of the original SV.
5148 (Uses C<sv_setsv>).
5149
5150         SV*     newSVsv(SV* old)
5151
5152 =for hackers
5153 Found in file sv.c
5154
5155 =item newSVuv
5156 X<newSVuv>
5157
5158 Creates a new SV and copies an unsigned integer into it.
5159 The reference count for the SV is set to 1.
5160
5161         SV*     newSVuv(UV u)
5162
5163 =for hackers
5164 Found in file sv.c
5165
5166 =item newSV_type
5167 X<newSV_type>
5168
5169 Creates a new SV, of the type specificied.  The reference count for the new SV
5170 is set to 1.
5171
5172         SV*     newSV_type(svtype type)
5173
5174 =for hackers
5175 Found in file sv.c
5176
5177 =item sv_2bool
5178 X<sv_2bool>
5179
5180 This function is only called on magical items, and is only used by
5181 sv_true() or its macro equivalent.
5182
5183         bool    sv_2bool(SV* sv)
5184
5185 =for hackers
5186 Found in file sv.c
5187
5188 =item sv_2cv
5189 X<sv_2cv>
5190
5191 Using various gambits, try to get a CV from an SV; in addition, try if
5192 possible to set C<*st> and C<*gvp> to the stash and GV associated with it.
5193 The flags in C<lref> are passed to sv_fetchsv.
5194
5195         CV*     sv_2cv(SV* sv, HV** st, GV** gvp, I32 lref)
5196
5197 =for hackers
5198 Found in file sv.c
5199
5200 =item sv_2io
5201 X<sv_2io>
5202
5203 Using various gambits, try to get an IO from an SV: the IO slot if its a
5204 GV; or the recursive result if we're an RV; or the IO slot of the symbol
5205 named after the PV if we're a string.
5206
5207         IO*     sv_2io(SV* sv)
5208
5209 =for hackers
5210 Found in file sv.c
5211
5212 =item sv_2iv_flags
5213 X<sv_2iv_flags>
5214
5215 Return the integer value of an SV, doing any necessary string
5216 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
5217 Normally used via the C<SvIV(sv)> and C<SvIVx(sv)> macros.
5218
5219         IV      sv_2iv_flags(SV* sv, I32 flags)
5220
5221 =for hackers
5222 Found in file sv.c
5223
5224 =item sv_2mortal
5225 X<sv_2mortal>
5226
5227 Marks an existing SV as mortal.  The SV will be destroyed "soon", either
5228 by an explicit call to FREETMPS, or by an implicit call at places such as
5229 statement boundaries.  SvTEMP() is turned on which means that the SV's
5230 string buffer can be "stolen" if this SV is copied. See also C<sv_newmortal>
5231 and C<sv_mortalcopy>.
5232
5233         SV*     sv_2mortal(SV* sv)
5234
5235 =for hackers
5236 Found in file sv.c
5237
5238 =item sv_2nv
5239 X<sv_2nv>
5240
5241 Return the num value of an SV, doing any necessary string or integer
5242 conversion, magic etc. Normally used via the C<SvNV(sv)> and C<SvNVx(sv)>
5243 macros.
5244
5245         NV      sv_2nv(SV* sv)
5246
5247 =for hackers
5248 Found in file sv.c
5249
5250 =item sv_2pvbyte
5251 X<sv_2pvbyte>
5252
5253 Return a pointer to the byte-encoded representation of the SV, and set *lp
5254 to its length.  May cause the SV to be downgraded from UTF-8 as a
5255 side-effect.
5256
5257 Usually accessed via the C<SvPVbyte> macro.
5258
5259         char*   sv_2pvbyte(SV* sv, STRLEN* lp)
5260
5261 =for hackers
5262 Found in file sv.c
5263
5264 =item sv_2pvutf8
5265 X<sv_2pvutf8>
5266
5267 Return a pointer to the UTF-8-encoded representation of the SV, and set *lp
5268 to its length.  May cause the SV to be upgraded to UTF-8 as a side-effect.
5269
5270 Usually accessed via the C<SvPVutf8> macro.
5271
5272         char*   sv_2pvutf8(SV* sv, STRLEN* lp)
5273
5274 =for hackers
5275 Found in file sv.c
5276
5277 =item sv_2pv_flags
5278 X<sv_2pv_flags>
5279
5280 Returns a pointer to the string value of an SV, and sets *lp to its length.
5281 If flags includes SV_GMAGIC, does an mg_get() first. Coerces sv to a string
5282 if necessary.
5283 Normally invoked via the C<SvPV_flags> macro. C<sv_2pv()> and C<sv_2pv_nomg>
5284 usually end up here too.
5285
5286         char*   sv_2pv_flags(SV* sv, STRLEN* lp, I32 flags)
5287
5288 =for hackers
5289 Found in file sv.c
5290
5291 =item sv_2uv_flags
5292 X<sv_2uv_flags>
5293
5294 Return the unsigned integer value of an SV, doing any necessary string
5295 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
5296 Normally used via the C<SvUV(sv)> and C<SvUVx(sv)> macros.
5297
5298         UV      sv_2uv_flags(SV* sv, I32 flags)
5299
5300 =for hackers
5301 Found in file sv.c
5302
5303 =item sv_backoff
5304 X<sv_backoff>
5305
5306 Remove any string offset. You should normally use the C<SvOOK_off> macro
5307 wrapper instead.
5308
5309         int     sv_backoff(SV* sv)
5310
5311 =for hackers
5312 Found in file sv.c
5313
5314 =item sv_bless
5315 X<sv_bless>
5316
5317 Blesses an SV into a specified package.  The SV must be an RV.  The package
5318 must be designated by its stash (see C<gv_stashpv()>).  The reference count
5319 of the SV is unaffected.
5320
5321         SV*     sv_bless(SV* sv, HV* stash)
5322
5323 =for hackers
5324 Found in file sv.c
5325
5326 =item sv_catpv
5327 X<sv_catpv>
5328
5329 Concatenates the string onto the end of the string which is in the SV.
5330 If the SV has the UTF-8 status set, then the bytes appended should be
5331 valid UTF-8.  Handles 'get' magic, but not 'set' magic.  See C<sv_catpv_mg>.
5332
5333         void    sv_catpv(SV* sv, const char* ptr)
5334
5335 =for hackers
5336 Found in file sv.c
5337
5338 =item sv_catpvf
5339 X<sv_catpvf>
5340
5341 Processes its arguments like C<sprintf> and appends the formatted
5342 output to an SV.  If the appended data contains "wide" characters
5343 (including, but not limited to, SVs with a UTF-8 PV formatted with %s,
5344 and characters >255 formatted with %c), the original SV might get
5345 upgraded to UTF-8.  Handles 'get' magic, but not 'set' magic.  See
5346 C<sv_catpvf_mg>. If the original SV was UTF-8, the pattern should be
5347 valid UTF-8; if the original SV was bytes, the pattern should be too.
5348
5349         void    sv_catpvf(SV* sv, const char* pat, ...)
5350
5351 =for hackers
5352 Found in file sv.c
5353
5354 =item sv_catpvf_mg
5355 X<sv_catpvf_mg>
5356
5357 Like C<sv_catpvf>, but also handles 'set' magic.
5358
5359         void    sv_catpvf_mg(SV *sv, const char* pat, ...)
5360
5361 =for hackers
5362 Found in file sv.c
5363
5364 =item sv_catpvn
5365 X<sv_catpvn>
5366
5367 Concatenates the string onto the end of the string which is in the SV.  The
5368 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
5369 status set, then the bytes appended should be valid UTF-8.
5370 Handles 'get' magic, but not 'set' magic.  See C<sv_catpvn_mg>.
5371
5372         void    sv_catpvn(SV* sv, const char* ptr, STRLEN len)
5373
5374 =for hackers
5375 Found in file sv.c
5376
5377 =item sv_catpvn_flags
5378 X<sv_catpvn_flags>
5379
5380 Concatenates the string onto the end of the string which is in the SV.  The
5381 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
5382 status set, then the bytes appended should be valid UTF-8.
5383 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<dsv> if
5384 appropriate, else not. C<sv_catpvn> and C<sv_catpvn_nomg> are implemented
5385 in terms of this function.
5386
5387         void    sv_catpvn_flags(SV* sv, const char* ptr, STRLEN len, I32 flags)
5388
5389 =for hackers
5390 Found in file sv.c
5391
5392 =item sv_catpvs
5393 X<sv_catpvs>
5394
5395 Like C<sv_catpvn>, but takes a literal string instead of a string/length pair.
5396
5397         void    sv_catpvs(SV* sv, const char* s)
5398
5399 =for hackers
5400 Found in file handy.h
5401
5402 =item sv_catpv_mg
5403 X<sv_catpv_mg>
5404
5405 Like C<sv_catpv>, but also handles 'set' magic.
5406
5407         void    sv_catpv_mg(SV *sv, const char *ptr)
5408
5409 =for hackers
5410 Found in file sv.c
5411
5412 =item sv_catsv
5413 X<sv_catsv>
5414
5415 Concatenates the string from SV C<ssv> onto the end of the string in
5416 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  Handles 'get' magic, but
5417 not 'set' magic.  See C<sv_catsv_mg>.
5418
5419         void    sv_catsv(SV* dsv, SV* ssv)
5420
5421 =for hackers
5422 Found in file sv.c
5423
5424 =item sv_catsv_flags
5425 X<sv_catsv_flags>
5426
5427 Concatenates the string from SV C<ssv> onto the end of the string in
5428 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  If C<flags> has C<SV_GMAGIC>
5429 bit set, will C<mg_get> on the SVs if appropriate, else not. C<sv_catsv>
5430 and C<sv_catsv_nomg> are implemented in terms of this function.
5431
5432         void    sv_catsv_flags(SV* dsv, SV* ssv, I32 flags)
5433
5434 =for hackers
5435 Found in file sv.c
5436
5437 =item sv_chop
5438 X<sv_chop>
5439
5440 Efficient removal of characters from the beginning of the string buffer.
5441 SvPOK(sv) must be true and the C<ptr> must be a pointer to somewhere inside
5442 the string buffer.  The C<ptr> becomes the first character of the adjusted
5443 string. Uses the "OOK hack".
5444 Beware: after this function returns, C<ptr> and SvPVX_const(sv) may no longer
5445 refer to the same chunk of data.
5446
5447         void    sv_chop(SV* sv, const char* ptr)
5448
5449 =for hackers
5450 Found in file sv.c
5451
5452 =item sv_clear
5453 X<sv_clear>
5454
5455 Clear an SV: call any destructors, free up any memory used by the body,
5456 and free the body itself. The SV's head is I<not> freed, although
5457 its type is set to all 1's so that it won't inadvertently be assumed
5458 to be live during global destruction etc.
5459 This function should only be called when REFCNT is zero. Most of the time
5460 you'll want to call C<sv_free()> (or its macro wrapper C<SvREFCNT_dec>)
5461 instead.
5462
5463         void    sv_clear(SV* sv)
5464
5465 =for hackers
5466 Found in file sv.c
5467
5468 =item sv_cmp
5469 X<sv_cmp>
5470
5471 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
5472 string in C<sv1> is less than, equal to, or greater than the string in
5473 C<sv2>. Is UTF-8 and 'use bytes' aware, handles get magic, and will
5474 coerce its args to strings if necessary.  See also C<sv_cmp_locale>.
5475
5476         I32     sv_cmp(SV* sv1, SV* sv2)
5477
5478 =for hackers
5479 Found in file sv.c
5480
5481 =item sv_cmp_locale
5482 X<sv_cmp_locale>
5483
5484 Compares the strings in two SVs in a locale-aware manner. Is UTF-8 and
5485 'use bytes' aware, handles get magic, and will coerce its args to strings
5486 if necessary.  See also C<sv_cmp_locale>.  See also C<sv_cmp>.
5487
5488         I32     sv_cmp_locale(SV* sv1, SV* sv2)
5489
5490 =for hackers
5491 Found in file sv.c
5492
5493 =item sv_collxfrm
5494 X<sv_collxfrm>
5495
5496 Add Collate Transform magic to an SV if it doesn't already have it.
5497
5498 Any scalar variable may carry PERL_MAGIC_collxfrm magic that contains the
5499 scalar data of the variable, but transformed to such a format that a normal
5500 memory comparison can be used to compare the data according to the locale
5501 settings.
5502
5503         char*   sv_collxfrm(SV* sv, STRLEN* nxp)
5504
5505 =for hackers
5506 Found in file sv.c
5507
5508 =item sv_copypv
5509 X<sv_copypv>
5510
5511 Copies a stringified representation of the source SV into the
5512 destination SV.  Automatically performs any necessary mg_get and
5513 coercion of numeric values into strings.  Guaranteed to preserve
5514 UTF8 flag even from overloaded objects.  Similar in nature to
5515 sv_2pv[_flags] but operates directly on an SV instead of just the
5516 string.  Mostly uses sv_2pv_flags to do its work, except when that
5517 would lose the UTF-8'ness of the PV.
5518
5519         void    sv_copypv(SV* dsv, SV* ssv)
5520
5521 =for hackers
5522 Found in file sv.c
5523
5524 =item sv_dec
5525 X<sv_dec>
5526
5527 Auto-decrement of the value in the SV, doing string to numeric conversion
5528 if necessary. Handles 'get' magic.
5529
5530         void    sv_dec(SV* sv)
5531
5532 =for hackers
5533 Found in file sv.c
5534
5535 =item sv_eq
5536 X<sv_eq>
5537
5538 Returns a boolean indicating whether the strings in the two SVs are
5539 identical. Is UTF-8 and 'use bytes' aware, handles get magic, and will
5540 coerce its args to strings if necessary.
5541
5542         I32     sv_eq(SV* sv1, SV* sv2)
5543
5544 =for hackers
5545 Found in file sv.c
5546
5547 =item sv_force_normal_flags
5548 X<sv_force_normal_flags>
5549
5550 Undo various types of fakery on an SV: if the PV is a shared string, make
5551 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
5552 an xpvmg; if we're a copy-on-write scalar, this is the on-write time when
5553 we do the copy, and is also used locally. If C<SV_COW_DROP_PV> is set
5554 then a copy-on-write scalar drops its PV buffer (if any) and becomes
5555 SvPOK_off rather than making a copy. (Used where this scalar is about to be
5556 set to some other value.) In addition, the C<flags> parameter gets passed to
5557 C<sv_unref_flags()> when unrefing. C<sv_force_normal> calls this function
5558 with flags set to 0.
5559
5560         void    sv_force_normal_flags(SV *sv, U32 flags)
5561
5562 =for hackers
5563 Found in file sv.c
5564
5565 =item sv_free
5566 X<sv_free>
5567
5568 Decrement an SV's reference count, and if it drops to zero, call
5569 C<sv_clear> to invoke destructors and free up any memory used by
5570 the body; finally, deallocate the SV's head itself.
5571 Normally called via a wrapper macro C<SvREFCNT_dec>.
5572
5573         void    sv_free(SV* sv)
5574
5575 =for hackers
5576 Found in file sv.c
5577
5578 =item sv_gets
5579 X<sv_gets>
5580
5581 Get a line from the filehandle and store it into the SV, optionally
5582 appending to the currently-stored string.
5583
5584         char*   sv_gets(SV* sv, PerlIO* fp, I32 append)
5585
5586 =for hackers
5587 Found in file sv.c
5588
5589 =item sv_grow
5590 X<sv_grow>
5591
5592 Expands the character buffer in the SV.  If necessary, uses C<sv_unref> and
5593 upgrades the SV to C<SVt_PV>.  Returns a pointer to the character buffer.
5594 Use the C<SvGROW> wrapper instead.
5595
5596         char*   sv_grow(SV* sv, STRLEN newlen)
5597
5598 =for hackers
5599 Found in file sv.c
5600
5601 =item sv_inc
5602 X<sv_inc>
5603
5604 Auto-increment of the value in the SV, doing string to numeric conversion
5605 if necessary. Handles 'get' magic.
5606
5607         void    sv_inc(SV* sv)
5608
5609 =for hackers
5610 Found in file sv.c
5611
5612 =item sv_insert
5613 X<sv_insert>
5614
5615 Inserts a string at the specified offset/length within the SV. Similar to
5616 the Perl substr() function.
5617
5618         void    sv_insert(SV* bigsv, STRLEN offset, STRLEN len, const char* little, STRLEN littlelen)
5619
5620 =for hackers
5621 Found in file sv.c
5622
5623 =item sv_isa
5624 X<sv_isa>
5625
5626 Returns a boolean indicating whether the SV is blessed into the specified
5627 class.  This does not check for subtypes; use C<sv_derived_from> to verify
5628 an inheritance relationship.
5629
5630         int     sv_isa(SV* sv, const char* name)
5631
5632 =for hackers
5633 Found in file sv.c
5634
5635 =item sv_isobject
5636 X<sv_isobject>
5637
5638 Returns a boolean indicating whether the SV is an RV pointing to a blessed
5639 object.  If the SV is not an RV, or if the object is not blessed, then this
5640 will return false.
5641
5642         int     sv_isobject(SV* sv)
5643
5644 =for hackers
5645 Found in file sv.c
5646
5647 =item sv_len
5648 X<sv_len>
5649
5650 Returns the length of the string in the SV. Handles magic and type
5651 coercion.  See also C<SvCUR>, which gives raw access to the xpv_cur slot.
5652
5653         STRLEN  sv_len(SV* sv)
5654
5655 =for hackers
5656 Found in file sv.c
5657
5658 =item sv_len_utf8
5659 X<sv_len_utf8>
5660
5661 Returns the number of characters in the string in an SV, counting wide
5662 UTF-8 bytes as a single character. Handles magic and type coercion.
5663
5664         STRLEN  sv_len_utf8(SV* sv)
5665
5666 =for hackers
5667 Found in file sv.c
5668
5669 =item sv_magic
5670 X<sv_magic>
5671
5672 Adds magic to an SV. First upgrades C<sv> to type C<SVt_PVMG> if necessary,
5673 then adds a new magic item of type C<how> to the head of the magic list.
5674
5675 See C<sv_magicext> (which C<sv_magic> now calls) for a description of the
5676 handling of the C<name> and C<namlen> arguments.
5677
5678 You need to use C<sv_magicext> to add magic to SvREADONLY SVs and also
5679 to add more than one instance of the same 'how'.
5680
5681         void    sv_magic(SV* sv, SV* obj, int how, const char* name, I32 namlen)
5682
5683 =for hackers
5684 Found in file sv.c
5685
5686 =item sv_magicext
5687 X<sv_magicext>
5688
5689 Adds magic to an SV, upgrading it if necessary. Applies the
5690 supplied vtable and returns a pointer to the magic added.
5691
5692 Note that C<sv_magicext> will allow things that C<sv_magic> will not.
5693 In particular, you can add magic to SvREADONLY SVs, and add more than
5694 one instance of the same 'how'.
5695
5696 If C<namlen> is greater than zero then a C<savepvn> I<copy> of C<name> is
5697 stored, if C<namlen> is zero then C<name> is stored as-is and - as another
5698 special case - if C<(name && namlen == HEf_SVKEY)> then C<name> is assumed
5699 to contain an C<SV*> and is stored as-is with its REFCNT incremented.
5700
5701 (This is now used as a subroutine by C<sv_magic>.)
5702
5703         MAGIC * sv_magicext(SV* sv, SV* obj, int how, const MGVTBL *vtbl, const char* name, I32 namlen)
5704
5705 =for hackers
5706 Found in file sv.c
5707
5708 =item sv_mortalcopy
5709 X<sv_mortalcopy>
5710
5711 Creates a new SV which is a copy of the original SV (using C<sv_setsv>).
5712 The new SV is marked as mortal. It will be destroyed "soon", either by an
5713 explicit call to FREETMPS, or by an implicit call at places such as
5714 statement boundaries.  See also C<sv_newmortal> and C<sv_2mortal>.
5715
5716         SV*     sv_mortalcopy(SV* oldsv)
5717
5718 =for hackers
5719 Found in file sv.c
5720
5721 =item sv_newmortal
5722 X<sv_newmortal>
5723
5724 Creates a new null SV which is mortal.  The reference count of the SV is
5725 set to 1. It will be destroyed "soon", either by an explicit call to
5726 FREETMPS, or by an implicit call at places such as statement boundaries.
5727 See also C<sv_mortalcopy> and C<sv_2mortal>.
5728
5729         SV*     sv_newmortal()
5730
5731 =for hackers
5732 Found in file sv.c
5733
5734 =item sv_newref
5735 X<sv_newref>
5736
5737 Increment an SV's reference count. Use the C<SvREFCNT_inc()> wrapper
5738 instead.
5739
5740         SV*     sv_newref(SV* sv)
5741
5742 =for hackers
5743 Found in file sv.c
5744
5745 =item sv_pos_b2u
5746 X<sv_pos_b2u>
5747
5748 Converts the value pointed to by offsetp from a count of bytes from the
5749 start of the string, to a count of the equivalent number of UTF-8 chars.
5750 Handles magic and type coercion.
5751
5752         void    sv_pos_b2u(SV* sv, I32* offsetp)
5753
5754 =for hackers
5755 Found in file sv.c
5756
5757 =item sv_pos_u2b
5758 X<sv_pos_u2b>
5759
5760 Converts the value pointed to by offsetp from a count of UTF-8 chars from
5761 the start of the string, to a count of the equivalent number of bytes; if
5762 lenp is non-zero, it does the same to lenp, but this time starting from
5763 the offset, rather than from the start of the string. Handles magic and
5764 type coercion.
5765
5766         void    sv_pos_u2b(SV* sv, I32* offsetp, I32* lenp)
5767
5768 =for hackers
5769 Found in file sv.c
5770
5771 =item sv_pvbyten_force
5772 X<sv_pvbyten_force>
5773
5774 The backend for the C<SvPVbytex_force> macro. Always use the macro instead.
5775
5776         char*   sv_pvbyten_force(SV* sv, STRLEN* lp)
5777
5778 =for hackers
5779 Found in file sv.c
5780
5781 =item sv_pvn_force
5782 X<sv_pvn_force>
5783
5784 Get a sensible string out of the SV somehow.
5785 A private implementation of the C<SvPV_force> macro for compilers which
5786 can't cope with complex macro expressions. Always use the macro instead.
5787
5788         char*   sv_pvn_force(SV* sv, STRLEN* lp)
5789
5790 =for hackers
5791 Found in file sv.c
5792
5793 =item sv_pvn_force_flags
5794 X<sv_pvn_force_flags>
5795
5796 Get a sensible string out of the SV somehow.
5797 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<sv> if
5798 appropriate, else not. C<sv_pvn_force> and C<sv_pvn_force_nomg> are
5799 implemented in terms of this function.
5800 You normally want to use the various wrapper macros instead: see
5801 C<SvPV_force> and C<SvPV_force_nomg>
5802
5803         char*   sv_pvn_force_flags(SV* sv, STRLEN* lp, I32 flags)
5804
5805 =for hackers
5806 Found in file sv.c
5807
5808 =item sv_pvutf8n_force
5809 X<sv_pvutf8n_force>
5810
5811 The backend for the C<SvPVutf8x_force> macro. Always use the macro instead.
5812
5813         char*   sv_pvutf8n_force(SV* sv, STRLEN* lp)
5814
5815 =for hackers
5816 Found in file sv.c
5817
5818 =item sv_reftype
5819 X<sv_reftype>
5820
5821 Returns a string describing what the SV is a reference to.
5822
5823         const char*     sv_reftype(const SV* sv, int ob)
5824
5825 =for hackers
5826 Found in file sv.c
5827
5828 =item sv_replace
5829 X<sv_replace>
5830
5831 Make the first argument a copy of the second, then delete the original.
5832 The target SV physically takes over ownership of the body of the source SV
5833 and inherits its flags; however, the target keeps any magic it owns,
5834 and any magic in the source is discarded.
5835 Note that this is a rather specialist SV copying operation; most of the
5836 time you'll want to use C<sv_setsv> or one of its many macro front-ends.
5837
5838         void    sv_replace(SV* sv, SV* nsv)
5839
5840 =for hackers
5841 Found in file sv.c
5842
5843 =item sv_reset
5844 X<sv_reset>
5845
5846 Underlying implementation for the C<reset> Perl function.
5847 Note that the perl-level function is vaguely deprecated.
5848
5849         void    sv_reset(const char* s, HV* stash)
5850
5851 =for hackers
5852 Found in file sv.c
5853
5854 =item sv_rvweaken
5855 X<sv_rvweaken>
5856
5857 Weaken a reference: set the C<SvWEAKREF> flag on this RV; give the
5858 referred-to SV C<PERL_MAGIC_backref> magic if it hasn't already; and
5859 push a back-reference to this RV onto the array of backreferences
5860 associated with that magic. If the RV is magical, set magic will be
5861 called after the RV is cleared.
5862
5863         SV*     sv_rvweaken(SV *sv)
5864
5865 =for hackers
5866 Found in file sv.c
5867
5868 =item sv_setiv
5869 X<sv_setiv>
5870
5871 Copies an integer into the given SV, upgrading first if necessary.
5872 Does not handle 'set' magic.  See also C<sv_setiv_mg>.
5873
5874         void    sv_setiv(SV* sv, IV num)
5875
5876 =for hackers
5877 Found in file sv.c
5878
5879 =item sv_setiv_mg
5880 X<sv_setiv_mg>
5881
5882 Like C<sv_setiv>, but also handles 'set' magic.
5883
5884         void    sv_setiv_mg(SV *sv, IV i)
5885
5886 =for hackers
5887 Found in file sv.c
5888
5889 =item sv_setnv
5890 X<sv_setnv>
5891
5892 Copies a double into the given SV, upgrading first if necessary.
5893 Does not handle 'set' magic.  See also C<sv_setnv_mg>.
5894
5895         void    sv_setnv(SV* sv, NV num)
5896
5897 =for hackers
5898 Found in file sv.c
5899
5900 =item sv_setnv_mg
5901 X<sv_setnv_mg>
5902
5903 Like C<sv_setnv>, but also handles 'set' magic.
5904
5905         void    sv_setnv_mg(SV *sv, NV num)
5906
5907 =for hackers
5908 Found in file sv.c
5909
5910 =item sv_setpv
5911 X<sv_setpv>
5912
5913 Copies a string into an SV.  The string must be null-terminated.  Does not
5914 handle 'set' magic.  See C<sv_setpv_mg>.
5915
5916         void    sv_setpv(SV* sv, const char* ptr)
5917
5918 =for hackers
5919 Found in file sv.c
5920
5921 =item sv_setpvf
5922 X<sv_setpvf>
5923
5924 Works like C<sv_catpvf> but copies the text into the SV instead of
5925 appending it.  Does not handle 'set' magic.  See C<sv_setpvf_mg>.
5926
5927         void    sv_setpvf(SV* sv, const char* pat, ...)
5928
5929 =for hackers
5930 Found in file sv.c
5931
5932 =item sv_setpvf_mg
5933 X<sv_setpvf_mg>
5934
5935 Like C<sv_setpvf>, but also handles 'set' magic.
5936
5937         void    sv_setpvf_mg(SV *sv, const char* pat, ...)
5938
5939 =for hackers
5940 Found in file sv.c
5941
5942 =item sv_setpviv
5943 X<sv_setpviv>
5944
5945 Copies an integer into the given SV, also updating its string value.
5946 Does not handle 'set' magic.  See C<sv_setpviv_mg>.
5947
5948         void    sv_setpviv(SV* sv, IV num)
5949
5950 =for hackers
5951 Found in file sv.c
5952
5953 =item sv_setpviv_mg
5954 X<sv_setpviv_mg>
5955
5956 Like C<sv_setpviv>, but also handles 'set' magic.
5957
5958         void    sv_setpviv_mg(SV *sv, IV iv)
5959
5960 =for hackers
5961 Found in file sv.c
5962
5963 =item sv_setpvn
5964 X<sv_setpvn>
5965
5966 Copies a string into an SV.  The C<len> parameter indicates the number of
5967 bytes to be copied.  If the C<ptr> argument is NULL the SV will become
5968 undefined.  Does not handle 'set' magic.  See C<sv_setpvn_mg>.
5969
5970         void    sv_setpvn(SV* sv, const char* ptr, STRLEN len)
5971
5972 =for hackers
5973 Found in file sv.c
5974
5975 =item sv_setpvn_mg
5976 X<sv_setpvn_mg>
5977
5978 Like C<sv_setpvn>, but also handles 'set' magic.
5979
5980         void    sv_setpvn_mg(SV *sv, const char *ptr, STRLEN len)
5981
5982 =for hackers
5983 Found in file sv.c
5984
5985 =item sv_setpvs
5986 X<sv_setpvs>
5987
5988 Like C<sv_setpvn>, but takes a literal string instead of a string/length pair.
5989
5990         void    sv_setpvs(SV* sv, const char* s)
5991
5992 =for hackers
5993 Found in file handy.h
5994
5995 =item sv_setpv_mg
5996 X<sv_setpv_mg>
5997
5998 Like C<sv_setpv>, but also handles 'set' magic.
5999
6000         void    sv_setpv_mg(SV *sv, const char *ptr)
6001
6002 =for hackers
6003 Found in file sv.c
6004
6005 =item sv_setref_iv
6006 X<sv_setref_iv>
6007
6008 Copies an integer into a new SV, optionally blessing the SV.  The C<rv>
6009 argument will be upgraded to an RV.  That RV will be modified to point to
6010 the new SV.  The C<classname> argument indicates the package for the
6011 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
6012 will have a reference count of 1, and the RV will be returned.
6013
6014         SV*     sv_setref_iv(SV* rv, const char* classname, IV iv)
6015
6016 =for hackers
6017 Found in file sv.c
6018
6019 =item sv_setref_nv
6020 X<sv_setref_nv>
6021
6022 Copies a double into a new SV, optionally blessing the SV.  The C<rv>
6023 argument will be upgraded to an RV.  That RV will be modified to point to
6024 the new SV.  The C<classname> argument indicates the package for the
6025 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
6026 will have a reference count of 1, and the RV will be returned.
6027
6028         SV*     sv_setref_nv(SV* rv, const char* classname, NV nv)
6029
6030 =for hackers
6031 Found in file sv.c
6032
6033 =item sv_setref_pv
6034 X<sv_setref_pv>
6035
6036 Copies a pointer into a new SV, optionally blessing the SV.  The C<rv>
6037 argument will be upgraded to an RV.  That RV will be modified to point to
6038 the new SV.  If the C<pv> argument is NULL then C<PL_sv_undef> will be placed
6039 into the SV.  The C<classname> argument indicates the package for the
6040 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
6041 will have a reference count of 1, and the RV will be returned.
6042
6043 Do not use with other Perl types such as HV, AV, SV, CV, because those
6044 objects will become corrupted by the pointer copy process.
6045
6046 Note that C<sv_setref_pvn> copies the string while this copies the pointer.
6047
6048         SV*     sv_setref_pv(SV* rv, const char* classname, void* pv)
6049
6050 =for hackers
6051 Found in file sv.c
6052
6053 =item sv_setref_pvn
6054 X<sv_setref_pvn>
6055
6056 Copies a string into a new SV, optionally blessing the SV.  The length of the
6057 string must be specified with C<n>.  The C<rv> argument will be upgraded to
6058 an RV.  That RV will be modified to point to the new SV.  The C<classname>
6059 argument indicates the package for the blessing.  Set C<classname> to
6060 C<NULL> to avoid the blessing.  The new SV will have a reference count
6061 of 1, and the RV will be returned.
6062
6063 Note that C<sv_setref_pv> copies the pointer while this copies the string.
6064
6065         SV*     sv_setref_pvn(SV* rv, const char* classname, const char* pv, STRLEN n)
6066
6067 =for hackers
6068 Found in file sv.c
6069
6070 =item sv_setref_uv
6071 X<sv_setref_uv>
6072
6073 Copies an unsigned integer into a new SV, optionally blessing the SV.  The C<rv>
6074 argument will be upgraded to an RV.  That RV will be modified to point to
6075 the new SV.  The C<classname> argument indicates the package for the
6076 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
6077 will have a reference count of 1, and the RV will be returned.
6078
6079         SV*     sv_setref_uv(SV* rv, const char* classname, UV uv)
6080
6081 =for hackers
6082 Found in file sv.c
6083
6084 =item sv_setsv
6085 X<sv_setsv>
6086
6087 Copies the contents of the source SV C<ssv> into the destination SV
6088 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
6089 function if the source SV needs to be reused. Does not handle 'set' magic.
6090 Loosely speaking, it performs a copy-by-value, obliterating any previous
6091 content of the destination.
6092
6093 You probably want to use one of the assortment of wrappers, such as
6094 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
6095 C<SvSetMagicSV_nosteal>.
6096
6097         void    sv_setsv(SV* dsv, SV* ssv)
6098
6099 =for hackers
6100 Found in file sv.c
6101
6102 =item sv_setsv_flags
6103 X<sv_setsv_flags>
6104
6105 Copies the contents of the source SV C<ssv> into the destination SV
6106 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
6107 function if the source SV needs to be reused. Does not handle 'set' magic.
6108 Loosely speaking, it performs a copy-by-value, obliterating any previous
6109 content of the destination.
6110 If the C<flags> parameter has the C<SV_GMAGIC> bit set, will C<mg_get> on
6111 C<ssv> if appropriate, else not. If the C<flags> parameter has the
6112 C<NOSTEAL> bit set then the buffers of temps will not be stolen. <sv_setsv>
6113 and C<sv_setsv_nomg> are implemented in terms of this function.
6114
6115 You probably want to use one of the assortment of wrappers, such as
6116 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
6117 C<SvSetMagicSV_nosteal>.
6118
6119 This is the primary function for copying scalars, and most other
6120 copy-ish functions and macros use this underneath.
6121
6122         void    sv_setsv_flags(SV* dsv, SV* ssv, I32 flags)
6123
6124 =for hackers
6125 Found in file sv.c
6126
6127 =item sv_setsv_mg
6128 X<sv_setsv_mg>
6129
6130 Like C<sv_setsv>, but also handles 'set' magic.
6131
6132         void    sv_setsv_mg(SV *dstr, SV *sstr)
6133
6134 =for hackers
6135 Found in file sv.c
6136
6137 =item sv_setuv
6138 X<sv_setuv>
6139
6140 Copies an unsigned integer into the given SV, upgrading first if necessary.
6141 Does not handle 'set' magic.  See also C<sv_setuv_mg>.
6142
6143         void    sv_setuv(SV* sv, UV num)
6144
6145 =for hackers
6146 Found in file sv.c
6147
6148 =item sv_setuv_mg
6149 X<sv_setuv_mg>
6150
6151 Like C<sv_setuv>, but also handles 'set' magic.
6152
6153         void    sv_setuv_mg(SV *sv, UV u)
6154
6155 =for hackers
6156 Found in file sv.c
6157
6158 =item sv_tainted
6159 X<sv_tainted>
6160
6161 Test an SV for taintedness. Use C<SvTAINTED> instead.
6162         bool    sv_tainted(SV* sv)
6163
6164 =for hackers
6165 Found in file sv.c
6166
6167 =item sv_true
6168 X<sv_true>
6169
6170 Returns true if the SV has a true value by Perl's rules.
6171 Use the C<SvTRUE> macro instead, which may call C<sv_true()> or may
6172 instead use an in-line version.
6173
6174         I32     sv_true(SV *sv)
6175
6176 =for hackers
6177 Found in file sv.c
6178
6179 =item sv_unmagic
6180 X<sv_unmagic>
6181
6182 Removes all magic of type C<type> from an SV.
6183
6184         int     sv_unmagic(SV* sv, int type)
6185
6186 =for hackers
6187 Found in file sv.c
6188
6189 =item sv_unref_flags
6190 X<sv_unref_flags>
6191
6192 Unsets the RV status of the SV, and decrements the reference count of
6193 whatever was being referenced by the RV.  This can almost be thought of
6194 as a reversal of C<newSVrv>.  The C<cflags> argument can contain
6195 C<SV_IMMEDIATE_UNREF> to force the reference count to be decremented
6196 (otherwise the decrementing is conditional on the reference count being
6197 different from one or the reference being a readonly SV).
6198 See C<SvROK_off>.
6199
6200         void    sv_unref_flags(SV* sv, U32 flags)
6201
6202 =for hackers
6203 Found in file sv.c
6204
6205 =item sv_untaint
6206 X<sv_untaint>
6207
6208 Untaint an SV. Use C<SvTAINTED_off> instead.
6209         void    sv_untaint(SV* sv)
6210
6211 =for hackers
6212 Found in file sv.c
6213
6214 =item sv_upgrade
6215 X<sv_upgrade>
6216
6217 Upgrade an SV to a more complex form.  Generally adds a new body type to the
6218 SV, then copies across as much information as possible from the old body.
6219 You generally want to use the C<SvUPGRADE> macro wrapper. See also C<svtype>.
6220
6221         void    sv_upgrade(SV* sv, svtype new_type)
6222
6223 =for hackers
6224 Found in file sv.c
6225
6226 =item sv_usepvn_flags
6227 X<sv_usepvn_flags>
6228
6229 Tells an SV to use C<ptr> to find its string value.  Normally the
6230 string is stored inside the SV but sv_usepvn allows the SV to use an
6231 outside string.  The C<ptr> should point to memory that was allocated
6232 by C<malloc>.  The string length, C<len>, must be supplied.  By default
6233 this function will realloc (i.e. move) the memory pointed to by C<ptr>,
6234 so that pointer should not be freed or used by the programmer after
6235 giving it to sv_usepvn, and neither should any pointers from "behind"
6236 that pointer (e.g. ptr + 1) be used.
6237
6238 If C<flags> & SV_SMAGIC is true, will call SvSETMAGIC. If C<flags> &
6239 SV_HAS_TRAILING_NUL is true, then C<ptr[len]> must be NUL, and the realloc
6240 will be skipped. (i.e. the buffer is actually at least 1 byte longer than
6241 C<len>, and already meets the requirements for storing in C<SvPVX>)
6242
6243         void    sv_usepvn_flags(SV* sv, char* ptr, STRLEN len, U32 flags)
6244
6245 =for hackers
6246 Found in file sv.c
6247
6248 =item sv_utf8_decode
6249 X<sv_utf8_decode>
6250
6251 If the PV of the SV is an octet sequence in UTF-8
6252 and contains a multiple-byte character, the C<SvUTF8> flag is turned on
6253 so that it looks like a character. If the PV contains only single-byte
6254 characters, the C<SvUTF8> flag stays being off.
6255 Scans PV for validity and returns false if the PV is invalid UTF-8.
6256
6257 NOTE: this function is experimental and may change or be
6258 removed without notice.
6259
6260         bool    sv_utf8_decode(SV *sv)
6261
6262 =for hackers
6263 Found in file sv.c
6264
6265 =item sv_utf8_downgrade
6266 X<sv_utf8_downgrade>
6267
6268 Attempts to convert the PV of an SV from characters to bytes.
6269 If the PV contains a character beyond byte, this conversion will fail;
6270 in this case, either returns false or, if C<fail_ok> is not
6271 true, croaks.
6272
6273 This is not as a general purpose Unicode to byte encoding interface:
6274 use the Encode extension for that.
6275
6276 NOTE: this function is experimental and may change or be
6277 removed without notice.
6278
6279         bool    sv_utf8_downgrade(SV *sv, bool fail_ok)
6280
6281 =for hackers
6282 Found in file sv.c
6283
6284 =item sv_utf8_encode
6285 X<sv_utf8_encode>
6286
6287 Converts the PV of an SV to UTF-8, but then turns the C<SvUTF8>
6288 flag off so that it looks like octets again.
6289
6290         void    sv_utf8_encode(SV *sv)
6291
6292 =for hackers
6293 Found in file sv.c
6294
6295 =item sv_utf8_upgrade
6296 X<sv_utf8_upgrade>
6297
6298 Converts the PV of an SV to its UTF-8-encoded form.
6299 Forces the SV to string form if it is not already.
6300 Always sets the SvUTF8 flag to avoid future validity checks even
6301 if all the bytes have hibit clear.
6302
6303 This is not as a general purpose byte encoding to Unicode interface:
6304 use the Encode extension for that.
6305
6306         STRLEN  sv_utf8_upgrade(SV *sv)
6307
6308 =for hackers
6309 Found in file sv.c
6310
6311 =item sv_utf8_upgrade_flags
6312 X<sv_utf8_upgrade_flags>
6313
6314 Converts the PV of an SV to its UTF-8-encoded form.
6315 Forces the SV to string form if it is not already.
6316 Always sets the SvUTF8 flag to avoid future validity checks even
6317 if all the bytes have hibit clear. If C<flags> has C<SV_GMAGIC> bit set,
6318 will C<mg_get> on C<sv> if appropriate, else not. C<sv_utf8_upgrade> and
6319 C<sv_utf8_upgrade_nomg> are implemented in terms of this function.
6320
6321 This is not as a general purpose byte encoding to Unicode interface:
6322 use the Encode extension for that.
6323
6324         STRLEN  sv_utf8_upgrade_flags(SV *sv, I32 flags)
6325
6326 =for hackers
6327 Found in file sv.c
6328
6329 =item sv_vcatpvf
6330 X<sv_vcatpvf>
6331
6332 Processes its arguments like C<vsprintf> and appends the formatted output
6333 to an SV.  Does not handle 'set' magic.  See C<sv_vcatpvf_mg>.
6334
6335 Usually used via its frontend C<sv_catpvf>.
6336
6337         void    sv_vcatpvf(SV* sv, const char* pat, va_list* args)
6338
6339 =for hackers
6340 Found in file sv.c
6341
6342 =item sv_vcatpvfn
6343 X<sv_vcatpvfn>
6344
6345 Processes its arguments like C<vsprintf> and appends the formatted output
6346 to an SV.  Uses an array of SVs if the C style variable argument list is
6347 missing (NULL).  When running with taint checks enabled, indicates via
6348 C<maybe_tainted> if results are untrustworthy (often due to the use of
6349 locales).
6350
6351 Usually used via one of its frontends C<sv_vcatpvf> and C<sv_vcatpvf_mg>.
6352
6353         void    sv_vcatpvfn(SV* sv, const char* pat, STRLEN patlen, va_list* args, SV** svargs, I32 svmax, bool *maybe_tainted)
6354
6355 =for hackers
6356 Found in file sv.c
6357
6358 =item sv_vcatpvf_mg
6359 X<sv_vcatpvf_mg>
6360
6361 Like C<sv_vcatpvf>, but also handles 'set' magic.
6362
6363 Usually used via its frontend C<sv_catpvf_mg>.
6364
6365         void    sv_vcatpvf_mg(SV* sv, const char* pat, va_list* args)
6366
6367 =for hackers
6368 Found in file sv.c
6369
6370 =item sv_vsetpvf
6371 X<sv_vsetpvf>
6372
6373 Works like C<sv_vcatpvf> but copies the text into the SV instead of
6374 appending it.  Does not handle 'set' magic.  See C<sv_vsetpvf_mg>.
6375
6376 Usually used via its frontend C<sv_setpvf>.
6377
6378         void    sv_vsetpvf(SV* sv, const char* pat, va_list* args)
6379
6380 =for hackers
6381 Found in file sv.c
6382
6383 =item sv_vsetpvfn
6384 X<sv_vsetpvfn>
6385
6386 Works like C<sv_vcatpvfn> but copies the text into the SV instead of
6387 appending it.
6388
6389 Usually used via one of its frontends C<sv_vsetpvf> and C<sv_vsetpvf_mg>.
6390
6391         void    sv_vsetpvfn(SV* sv, const char* pat, STRLEN patlen, va_list* args, SV** svargs, I32 svmax, bool *maybe_tainted)
6392
6393 =for hackers
6394 Found in file sv.c
6395
6396 =item sv_vsetpvf_mg
6397 X<sv_vsetpvf_mg>
6398
6399 Like C<sv_vsetpvf>, but also handles 'set' magic.
6400
6401 Usually used via its frontend C<sv_setpvf_mg>.
6402
6403         void    sv_vsetpvf_mg(SV* sv, const char* pat, va_list* args)
6404
6405 =for hackers
6406 Found in file sv.c
6407
6408
6409 =back
6410
6411 =head1 Unicode Support
6412
6413 =over 8
6414
6415 =item bytes_from_utf8
6416 X<bytes_from_utf8>
6417
6418 Converts a string C<s> of length C<len> from UTF-8 into byte encoding.
6419 Unlike C<utf8_to_bytes> but like C<bytes_to_utf8>, returns a pointer to
6420 the newly-created string, and updates C<len> to contain the new
6421 length.  Returns the original string if no conversion occurs, C<len>
6422 is unchanged. Do nothing if C<is_utf8> points to 0. Sets C<is_utf8> to
6423 0 if C<s> is converted or contains all 7bit characters.
6424
6425 NOTE: this function is experimental and may change or be
6426 removed without notice.
6427
6428         U8*     bytes_from_utf8(const U8 *s, STRLEN *len, bool *is_utf8)
6429
6430 =for hackers
6431 Found in file utf8.c
6432
6433 =item bytes_to_utf8
6434 X<bytes_to_utf8>
6435
6436 Converts a string C<s> of length C<len> from ASCII into UTF-8 encoding.
6437 Returns a pointer to the newly-created string, and sets C<len> to
6438 reflect the new length.
6439
6440 If you want to convert to UTF-8 from other encodings than ASCII,
6441 see sv_recode_to_utf8().
6442
6443 NOTE: this function is experimental and may change or be
6444 removed without notice.
6445
6446         U8*     bytes_to_utf8(const U8 *s, STRLEN *len)
6447
6448 =for hackers
6449 Found in file utf8.c
6450
6451 =item ibcmp_utf8
6452 X<ibcmp_utf8>
6453
6454 Return true if the strings s1 and s2 differ case-insensitively, false
6455 if not (if they are equal case-insensitively).  If u1 is true, the
6456 string s1 is assumed to be in UTF-8-encoded Unicode.  If u2 is true,
6457 the string s2 is assumed to be in UTF-8-encoded Unicode.  If u1 or u2
6458 are false, the respective string is assumed to be in native 8-bit
6459 encoding.
6460
6461 If the pe1 and pe2 are non-NULL, the scanning pointers will be copied
6462 in there (they will point at the beginning of the I<next> character).
6463 If the pointers behind pe1 or pe2 are non-NULL, they are the end
6464 pointers beyond which scanning will not continue under any
6465 circumstances.  If the byte lengths l1 and l2 are non-zero, s1+l1 and
6466 s2+l2 will be used as goal end pointers that will also stop the scan,
6467 and which qualify towards defining a successful match: all the scans
6468 that define an explicit length must reach their goal pointers for
6469 a match to succeed).
6470
6471 For case-insensitiveness, the "casefolding" of Unicode is used
6472 instead of upper/lowercasing both the characters, see
6473 http://www.unicode.org/unicode/reports/tr21/ (Case Mappings).
6474
6475         I32     ibcmp_utf8(const char* a, char **pe1, UV l1, bool u1, const char* b, char **pe2, UV l2, bool u2)
6476
6477 =for hackers
6478 Found in file utf8.c
6479
6480 =item is_utf8_char
6481 X<is_utf8_char>
6482
6483 Tests if some arbitrary number of bytes begins in a valid UTF-8
6484 character.  Note that an INVARIANT (i.e. ASCII) character is a valid
6485 UTF-8 character.  The actual number of bytes in the UTF-8 character
6486 will be returned if it is valid, otherwise 0.
6487
6488         STRLEN  is_utf8_char(const U8 *p)
6489
6490 =for hackers
6491 Found in file utf8.c
6492
6493 =item is_utf8_string
6494 X<is_utf8_string>
6495
6496 Returns true if first C<len> bytes of the given string form a valid
6497 UTF-8 string, false otherwise.  Note that 'a valid UTF-8 string' does
6498 not mean 'a string that contains code points above 0x7F encoded in UTF-8'
6499 because a valid ASCII string is a valid UTF-8 string.
6500
6501 See also is_utf8_string_loclen() and is_utf8_string_loc().
6502
6503         bool    is_utf8_string(const U8 *s, STRLEN len)
6504
6505 =for hackers
6506 Found in file utf8.c
6507
6508 =item is_utf8_string_loc
6509 X<is_utf8_string_loc>
6510
6511 Like is_utf8_string() but stores the location of the failure (in the
6512 case of "utf8ness failure") or the location s+len (in the case of
6513 "utf8ness success") in the C<ep>.
6514
6515 See also is_utf8_string_loclen() and is_utf8_string().
6516
6517         bool    is_utf8_string_loc(const U8 *s, STRLEN len, const U8 **p)
6518
6519 =for hackers
6520 Found in file utf8.c
6521
6522 =item is_utf8_string_loclen
6523 X<is_utf8_string_loclen>
6524
6525 Like is_utf8_string() but stores the location of the failure (in the
6526 case of "utf8ness failure") or the location s+len (in the case of
6527 "utf8ness success") in the C<ep>, and the number of UTF-8
6528 encoded characters in the C<el>.
6529
6530 See also is_utf8_string_loc() and is_utf8_string().
6531
6532         bool    is_utf8_string_loclen(const U8 *s, STRLEN len, const U8 **ep, STRLEN *el)
6533
6534 =for hackers
6535 Found in file utf8.c
6536
6537 =item pv_uni_display
6538 X<pv_uni_display>
6539
6540 Build to the scalar dsv a displayable version of the string spv,
6541 length len, the displayable version being at most pvlim bytes long
6542 (if longer, the rest is truncated and "..." will be appended).
6543
6544 The flags argument can have UNI_DISPLAY_ISPRINT set to display
6545 isPRINT()able characters as themselves, UNI_DISPLAY_BACKSLASH
6546 to display the \\[nrfta\\] as the backslashed versions (like '\n')
6547 (UNI_DISPLAY_BACKSLASH is preferred over UNI_DISPLAY_ISPRINT for \\).
6548 UNI_DISPLAY_QQ (and its alias UNI_DISPLAY_REGEX) have both
6549 UNI_DISPLAY_BACKSLASH and UNI_DISPLAY_ISPRINT turned on.
6550
6551 The pointer to the PV of the dsv is returned.
6552
6553         char*   pv_uni_display(SV *dsv, const U8 *spv, STRLEN len, STRLEN pvlim, UV flags)
6554
6555 =for hackers
6556 Found in file utf8.c
6557
6558 =item sv_cat_decode
6559 X<sv_cat_decode>
6560
6561 The encoding is assumed to be an Encode object, the PV of the ssv is
6562 assumed to be octets in that encoding and decoding the input starts
6563 from the position which (PV + *offset) pointed to.  The dsv will be
6564 concatenated the decoded UTF-8 string from ssv.  Decoding will terminate
6565 when the string tstr appears in decoding output or the input ends on
6566 the PV of the ssv. The value which the offset points will be modified
6567 to the last input position on the ssv.
6568
6569 Returns TRUE if the terminator was found, else returns FALSE.
6570
6571         bool    sv_cat_decode(SV* dsv, SV *encoding, SV *ssv, int *offset, char* tstr, int tlen)
6572
6573 =for hackers
6574 Found in file sv.c
6575
6576 =item sv_recode_to_utf8
6577 X<sv_recode_to_utf8>
6578
6579 The encoding is assumed to be an Encode object, on entry the PV
6580 of the sv is assumed to be octets in that encoding, and the sv
6581 will be converted into Unicode (and UTF-8).
6582
6583 If the sv already is UTF-8 (or if it is not POK), or if the encoding
6584 is not a reference, nothing is done to the sv.  If the encoding is not
6585 an C<Encode::XS> Encoding object, bad things will happen.
6586 (See F<lib/encoding.pm> and L<Encode>).
6587
6588 The PV of the sv is returned.
6589
6590         char*   sv_recode_to_utf8(SV* sv, SV *encoding)
6591
6592 =for hackers
6593 Found in file sv.c
6594
6595 =item sv_uni_display
6596 X<sv_uni_display>
6597
6598 Build to the scalar dsv a displayable version of the scalar sv,
6599 the displayable version being at most pvlim bytes long
6600 (if longer, the rest is truncated and "..." will be appended).
6601
6602 The flags argument is as in pv_uni_display().
6603
6604 The pointer to the PV of the dsv is returned.
6605
6606         char*   sv_uni_display(SV *dsv, SV *ssv, STRLEN pvlim, UV flags)
6607
6608 =for hackers
6609 Found in file utf8.c
6610
6611 =item to_utf8_case
6612 X<to_utf8_case>
6613
6614 The "p" contains the pointer to the UTF-8 string encoding
6615 the character that is being converted.
6616
6617 The "ustrp" is a pointer to the character buffer to put the
6618 conversion result to.  The "lenp" is a pointer to the length
6619 of the result.
6620
6621 The "swashp" is a pointer to the swash to use.
6622
6623 Both the special and normal mappings are stored lib/unicore/To/Foo.pl,
6624 and loaded by SWASHNEW, using lib/utf8_heavy.pl.  The special (usually,
6625 but not always, a multicharacter mapping), is tried first.
6626
6627 The "special" is a string like "utf8::ToSpecLower", which means the
6628 hash %utf8::ToSpecLower.  The access to the hash is through
6629 Perl_to_utf8_case().
6630
6631 The "normal" is a string like "ToLower" which means the swash
6632 %utf8::ToLower.
6633
6634         UV      to_utf8_case(const U8 *p, U8* ustrp, STRLEN *lenp, SV **swashp, const char *normal, const char *special)
6635
6636 =for hackers
6637 Found in file utf8.c
6638
6639 =item to_utf8_fold
6640 X<to_utf8_fold>
6641
6642 Convert the UTF-8 encoded character at p to its foldcase version and
6643 store that in UTF-8 in ustrp and its length in bytes in lenp.  Note
6644 that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since the
6645 foldcase version may be longer than the original character (up to
6646 three characters).
6647
6648 The first character of the foldcased version is returned
6649 (but note, as explained above, that there may be more.)
6650
6651         UV      to_utf8_fold(const U8 *p, U8* ustrp, STRLEN *lenp)
6652
6653 =for hackers
6654 Found in file utf8.c
6655
6656 =item to_utf8_lower
6657 X<to_utf8_lower>
6658
6659 Convert the UTF-8 encoded character at p to its lowercase version and
6660 store that in UTF-8 in ustrp and its length in bytes in lenp.  Note
6661 that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since the
6662 lowercase version may be longer than the original character.
6663
6664 The first character of the lowercased version is returned
6665 (but note, as explained above, that there may be more.)
6666
6667         UV      to_utf8_lower(const U8 *p, U8* ustrp, STRLEN *lenp)
6668
6669 =for hackers
6670 Found in file utf8.c
6671
6672 =item to_utf8_title
6673 X<to_utf8_title>
6674
6675 Convert the UTF-8 encoded character at p to its titlecase version and
6676 store that in UTF-8 in ustrp and its length in bytes in lenp.  Note
6677 that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since the
6678 titlecase version may be longer than the original character.
6679
6680 The first character of the titlecased version is returned
6681 (but note, as explained above, that there may be more.)
6682
6683         UV      to_utf8_title(const U8 *p, U8* ustrp, STRLEN *lenp)
6684
6685 =for hackers
6686 Found in file utf8.c
6687
6688 =item to_utf8_upper
6689 X<to_utf8_upper>
6690
6691 Convert the UTF-8 encoded character at p to its uppercase version and
6692 store that in UTF-8 in ustrp and its length in bytes in lenp.  Note
6693 that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since
6694 the uppercase version may be longer than the original character.
6695
6696 The first character of the uppercased version is returned
6697 (but note, as explained above, that there may be more.)
6698
6699         UV      to_utf8_upper(const U8 *p, U8* ustrp, STRLEN *lenp)
6700
6701 =for hackers
6702 Found in file utf8.c
6703
6704 =item utf8n_to_uvchr
6705 X<utf8n_to_uvchr>
6706
6707 flags
6708
6709 Returns the native character value of the first character in the string 
6710 C<s>
6711 which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
6712 length, in bytes, of that character.
6713
6714 Allows length and flags to be passed to low level routine.
6715
6716         UV      utf8n_to_uvchr(const U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags)
6717
6718 =for hackers
6719 Found in file utf8.c
6720
6721 =item utf8n_to_uvuni
6722 X<utf8n_to_uvuni>
6723
6724 Bottom level UTF-8 decode routine.
6725 Returns the unicode code point value of the first character in the string C<s>
6726 which is assumed to be in UTF-8 encoding and no longer than C<curlen>;
6727 C<retlen> will be set to the length, in bytes, of that character.
6728
6729 If C<s> does not point to a well-formed UTF-8 character, the behaviour
6730 is dependent on the value of C<flags>: if it contains UTF8_CHECK_ONLY,
6731 it is assumed that the caller will raise a warning, and this function
6732 will silently just set C<retlen> to C<-1> and return zero.  If the
6733 C<flags> does not contain UTF8_CHECK_ONLY, warnings about
6734 malformations will be given, C<retlen> will be set to the expected
6735 length of the UTF-8 character in bytes, and zero will be returned.
6736
6737 The C<flags> can also contain various flags to allow deviations from
6738 the strict UTF-8 encoding (see F<utf8.h>).
6739
6740 Most code should use utf8_to_uvchr() rather than call this directly.
6741
6742         UV      utf8n_to_uvuni(const U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags)
6743
6744 =for hackers
6745 Found in file utf8.c
6746
6747 =item utf8_distance
6748 X<utf8_distance>
6749
6750 Returns the number of UTF-8 characters between the UTF-8 pointers C<a>
6751 and C<b>.
6752
6753 WARNING: use only if you *know* that the pointers point inside the
6754 same UTF-8 buffer.
6755
6756         IV      utf8_distance(const U8 *a, const U8 *b)
6757
6758 =for hackers
6759 Found in file utf8.c
6760
6761 =item utf8_hop
6762 X<utf8_hop>
6763
6764 Return the UTF-8 pointer C<s> displaced by C<off> characters, either
6765 forward or backward.
6766
6767 WARNING: do not use the following unless you *know* C<off> is within
6768 the UTF-8 data pointed to by C<s> *and* that on entry C<s> is aligned
6769 on the first byte of character or just after the last byte of a character.
6770
6771         U8*     utf8_hop(const U8 *s, I32 off)
6772
6773 =for hackers
6774 Found in file utf8.c
6775
6776 =item utf8_length
6777 X<utf8_length>
6778
6779 Return the length of the UTF-8 char encoded string C<s> in characters.
6780 Stops at C<e> (inclusive).  If C<e E<lt> s> or if the scan would end
6781 up past C<e>, croaks.
6782
6783         STRLEN  utf8_length(const U8* s, const U8 *e)
6784
6785 =for hackers
6786 Found in file utf8.c
6787
6788 =item utf8_to_bytes
6789 X<utf8_to_bytes>
6790
6791 Converts a string C<s> of length C<len> from UTF-8 into byte encoding.
6792 Unlike C<bytes_to_utf8>, this over-writes the original string, and
6793 updates len to contain the new length.
6794 Returns zero on failure, setting C<len> to -1.
6795
6796 If you need a copy of the string, see C<bytes_from_utf8>.
6797
6798 NOTE: this function is experimental and may change or be
6799 removed without notice.
6800
6801         U8*     utf8_to_bytes(U8 *s, STRLEN *len)
6802
6803 =for hackers
6804 Found in file utf8.c
6805
6806 =item utf8_to_uvchr
6807 X<utf8_to_uvchr>
6808
6809 Returns the native character value of the first character in the string C<s>
6810 which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
6811 length, in bytes, of that character.
6812
6813 If C<s> does not point to a well-formed UTF-8 character, zero is
6814 returned and retlen is set, if possible, to -1.
6815
6816         UV      utf8_to_uvchr(const U8 *s, STRLEN *retlen)
6817
6818 =for hackers
6819 Found in file utf8.c
6820
6821 =item utf8_to_uvuni
6822 X<utf8_to_uvuni>
6823
6824 Returns the Unicode code point of the first character in the string C<s>
6825 which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
6826 length, in bytes, of that character.
6827
6828 This function should only be used when returned UV is considered
6829 an index into the Unicode semantic tables (e.g. swashes).
6830
6831 If C<s> does not point to a well-formed UTF-8 character, zero is
6832 returned and retlen is set, if possible, to -1.
6833
6834         UV      utf8_to_uvuni(const U8 *s, STRLEN *retlen)
6835
6836 =for hackers
6837 Found in file utf8.c
6838
6839 =item uvchr_to_utf8
6840 X<uvchr_to_utf8>
6841
6842 Adds the UTF-8 representation of the Native codepoint C<uv> to the end
6843 of the string C<d>; C<d> should be have at least C<UTF8_MAXBYTES+1> free
6844 bytes available. The return value is the pointer to the byte after the
6845 end of the new character. In other words,
6846
6847     d = uvchr_to_utf8(d, uv);
6848
6849 is the recommended wide native character-aware way of saying
6850
6851     *(d++) = uv;
6852
6853         U8*     uvchr_to_utf8(U8 *d, UV uv)
6854
6855 =for hackers
6856 Found in file utf8.c
6857
6858 =item uvuni_to_utf8_flags
6859 X<uvuni_to_utf8_flags>
6860
6861 Adds the UTF-8 representation of the Unicode codepoint C<uv> to the end
6862 of the string C<d>; C<d> should be have at least C<UTF8_MAXBYTES+1> free
6863 bytes available. The return value is the pointer to the byte after the
6864 end of the new character. In other words,
6865
6866     d = uvuni_to_utf8_flags(d, uv, flags);
6867
6868 or, in most cases,
6869
6870     d = uvuni_to_utf8(d, uv);
6871
6872 (which is equivalent to)
6873
6874     d = uvuni_to_utf8_flags(d, uv, 0);
6875
6876 is the recommended Unicode-aware way of saying
6877
6878     *(d++) = uv;
6879
6880         U8*     uvuni_to_utf8_flags(U8 *d, UV uv, UV flags)
6881
6882 =for hackers
6883 Found in file utf8.c
6884
6885
6886 =back
6887
6888 =head1 Variables created by C<xsubpp> and C<xsubpp> internal functions
6889
6890 =over 8
6891
6892 =item ax
6893 X<ax>
6894
6895 Variable which is setup by C<xsubpp> to indicate the stack base offset,
6896 used by the C<ST>, C<XSprePUSH> and C<XSRETURN> macros.  The C<dMARK> macro
6897 must be called prior to setup the C<MARK> variable.
6898
6899         I32     ax
6900
6901 =for hackers
6902 Found in file XSUB.h
6903
6904 =item CLASS
6905 X<CLASS>
6906
6907 Variable which is setup by C<xsubpp> to indicate the 
6908 class name for a C++ XS constructor.  This is always a C<char*>.  See C<THIS>.
6909
6910         char*   CLASS
6911
6912 =for hackers
6913 Found in file XSUB.h
6914
6915 =item dAX
6916 X<dAX>
6917
6918 Sets up the C<ax> variable.
6919 This is usually handled automatically by C<xsubpp> by calling C<dXSARGS>.
6920
6921                 dAX;
6922
6923 =for hackers
6924 Found in file XSUB.h
6925
6926 =item dAXMARK
6927 X<dAXMARK>
6928
6929 Sets up the C<ax> variable and stack marker variable C<mark>.
6930 This is usually handled automatically by C<xsubpp> by calling C<dXSARGS>.
6931
6932                 dAXMARK;
6933
6934 =for hackers
6935 Found in file XSUB.h
6936
6937 =item dITEMS
6938 X<dITEMS>
6939
6940 Sets up the C<items> variable.
6941 This is usually handled automatically by C<xsubpp> by calling C<dXSARGS>.
6942
6943                 dITEMS;
6944
6945 =for hackers
6946 Found in file XSUB.h
6947
6948 =item dUNDERBAR
6949 X<dUNDERBAR>
6950
6951 Sets up the C<padoff_du> variable for an XSUB that wishes to use
6952 C<UNDERBAR>.
6953
6954                 dUNDERBAR;
6955
6956 =for hackers
6957 Found in file XSUB.h
6958
6959 =item dXSARGS
6960 X<dXSARGS>
6961
6962 Sets up stack and mark pointers for an XSUB, calling dSP and dMARK.
6963 Sets up the C<ax> and C<items> variables by calling C<dAX> and C<dITEMS>.
6964 This is usually handled automatically by C<xsubpp>.
6965
6966                 dXSARGS;
6967
6968 =for hackers
6969 Found in file XSUB.h
6970
6971 =item dXSI32
6972 X<dXSI32>
6973
6974 Sets up the C<ix> variable for an XSUB which has aliases.  This is usually
6975 handled automatically by C<xsubpp>.
6976
6977                 dXSI32;
6978
6979 =for hackers
6980 Found in file XSUB.h
6981
6982 =item items
6983 X<items>
6984
6985 Variable which is setup by C<xsubpp> to indicate the number of 
6986 items on the stack.  See L<perlxs/"Variable-length Parameter Lists">.
6987
6988         I32     items
6989
6990 =for hackers
6991 Found in file XSUB.h
6992
6993 =item ix
6994 X<ix>
6995
6996 Variable which is setup by C<xsubpp> to indicate which of an 
6997 XSUB's aliases was used to invoke it.  See L<perlxs/"The ALIAS: Keyword">.
6998
6999         I32     ix
7000
7001 =for hackers
7002 Found in file XSUB.h
7003
7004 =item newXSproto
7005 X<newXSproto>
7006
7007 Used by C<xsubpp> to hook up XSUBs as Perl subs.  Adds Perl prototypes to
7008 the subs.
7009
7010 =for hackers
7011 Found in file XSUB.h
7012
7013 =item RETVAL
7014 X<RETVAL>
7015
7016 Variable which is setup by C<xsubpp> to hold the return value for an 
7017 XSUB. This is always the proper type for the XSUB. See 
7018 L<perlxs/"The RETVAL Variable">.
7019
7020         (whatever)      RETVAL
7021
7022 =for hackers
7023 Found in file XSUB.h
7024
7025 =item ST
7026 X<ST>
7027
7028 Used to access elements on the XSUB's stack.
7029
7030         SV*     ST(int ix)
7031
7032 =for hackers
7033 Found in file XSUB.h
7034
7035 =item THIS
7036 X<THIS>
7037
7038 Variable which is setup by C<xsubpp> to designate the object in a C++ 
7039 XSUB.  This is always the proper type for the C++ object.  See C<CLASS> and 
7040 L<perlxs/"Using XS With C++">.
7041
7042         (whatever)      THIS
7043
7044 =for hackers
7045 Found in file XSUB.h
7046
7047 =item UNDERBAR
7048 X<UNDERBAR>
7049
7050 The SV* corresponding to the $_ variable. Works even if there
7051 is a lexical $_ in scope.
7052
7053 =for hackers
7054 Found in file XSUB.h
7055
7056 =item XS
7057 X<XS>
7058
7059 Macro to declare an XSUB and its C parameter list.  This is handled by
7060 C<xsubpp>.
7061
7062 =for hackers
7063 Found in file XSUB.h
7064
7065 =item XS_VERSION
7066 X<XS_VERSION>
7067
7068 The version identifier for an XS module.  This is usually
7069 handled automatically by C<ExtUtils::MakeMaker>.  See C<XS_VERSION_BOOTCHECK>.
7070
7071 =for hackers
7072 Found in file XSUB.h
7073
7074 =item XS_VERSION_BOOTCHECK
7075 X<XS_VERSION_BOOTCHECK>
7076
7077 Macro to verify that a PM module's $VERSION variable matches the XS
7078 module's C<XS_VERSION> variable.  This is usually handled automatically by
7079 C<xsubpp>.  See L<perlxs/"The VERSIONCHECK: Keyword">.
7080
7081                 XS_VERSION_BOOTCHECK;
7082
7083 =for hackers
7084 Found in file XSUB.h
7085
7086
7087 =back
7088
7089 =head1 Warning and Dieing
7090
7091 =over 8
7092
7093 =item croak
7094 X<croak>
7095
7096 This is the XSUB-writer's interface to Perl's C<die> function.
7097 Normally call this function the same way you call the C C<printf>
7098 function.  Calling C<croak> returns control directly to Perl,
7099 sidestepping the normal C order of execution. See C<warn>.
7100
7101 If you want to throw an exception object, assign the object to
7102 C<$@> and then pass C<NULL> to croak():
7103
7104    errsv = get_sv("@", TRUE);
7105    sv_setsv(errsv, exception_object);
7106    croak(NULL);
7107
7108         void    croak(const char* pat, ...)
7109
7110 =for hackers
7111 Found in file util.c
7112
7113 =item warn
7114 X<warn>
7115
7116 This is the XSUB-writer's interface to Perl's C<warn> function.  Call this
7117 function the same way you call the C C<printf> function.  See C<croak>.
7118
7119         void    warn(const char* pat, ...)
7120
7121 =for hackers
7122 Found in file util.c
7123
7124
7125 =back
7126
7127 =head1 AUTHORS
7128
7129 Until May 1997, this document was maintained by Jeff Okamoto
7130 <okamoto@corp.hp.com>.  It is now maintained as part of Perl itself.
7131
7132 With lots of help and suggestions from Dean Roehrich, Malcolm Beattie,
7133 Andreas Koenig, Paul Hudson, Ilya Zakharevich, Paul Marquess, Neil
7134 Bowers, Matthew Green, Tim Bunce, Spider Boardman, Ulrich Pfeifer,
7135 Stephen McCamant, and Gurusamy Sarathy.
7136
7137 API Listing originally by Dean Roehrich <roehrich@cray.com>.
7138
7139 Updated to be autogenerated from comments in the source by Benjamin Stuhl.
7140
7141 =head1 SEE ALSO
7142
7143 perlguts(1), perlxs(1), perlxstut(1), perlintern(1)
7144
7145 =cut
7146
7147  ex: set ro: