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