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