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