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