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