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