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