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