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