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