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