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