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