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