EBCDIC: the non-printable characters are different.
[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 Coerces the given SV to an integer and returns it. Guarantees to evaluate
2550 sv only once. Use the more efficient C<SvIV> otherwise.
2551
2552         IV      SvIVx(SV* sv)
2553
2554 =for hackers
2555 Found in file sv.h
2556
2557 =item SvIVX
2558
2559 Returns the raw value in the SV's IV slot, without checks or conversions.
2560 Only use when you are sure SvIOK is true. See also C<SvIV()>.
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 Returns the raw value in the SV's NV slot, without checks or conversions.
2665 Only use when you are sure SvNOK is true. See also C<SvNV()>.
2666
2667         NV      SvNVX(SV* sv)
2668
2669 =for hackers
2670 Found in file sv.h
2671
2672 =item SvNVx
2673
2674 Coerces the given SV to a double and returns it. Guarantees to evaluate
2675 sv only once. Use the more efficient C<SvNV> otherwise.
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 the SV
2764 if the SV does not contain a string.  Handles 'get' magic. See also
2765 C<SvPVx> for a version which guarantees to evaluate sv only once.
2766
2767         char*   SvPV(SV* sv, STRLEN len)
2768
2769 =for hackers
2770 Found in file sv.h
2771
2772 =item SvPVbyte
2773
2774 Like C<SvPV>, but converts sv to byte representation first if necessary.
2775
2776         char*   SvPVbyte(SV* sv, STRLEN len)
2777
2778 =for hackers
2779 Found in file sv.h
2780
2781 =item SvPVbytex
2782
2783 Like C<SvPV>, but converts sv to byte representation first if necessary.
2784 Guarantees to evaluate sv only once; use the more efficient C<SvPVbyte>
2785 otherwise.
2786
2787
2788         char*   SvPVbytex(SV* sv, STRLEN len)
2789
2790 =for hackers
2791 Found in file sv.h
2792
2793 =item SvPVbytex_force
2794
2795 Like C<SvPV_force>, but converts sv to byte representation first if necessary.
2796 Guarantees to evaluate sv only once; use the more efficient C<SvPVbyte_force>
2797 otherwise.
2798
2799         char*   SvPVbytex_force(SV* sv, STRLEN len)
2800
2801 =for hackers
2802 Found in file sv.h
2803
2804 =item SvPVbyte_force
2805
2806 Like C<SvPV_force>, but converts sv to byte representation first if necessary.
2807
2808         char*   SvPVbyte_force(SV* sv, STRLEN len)
2809
2810 =for hackers
2811 Found in file sv.h
2812
2813 =item SvPVbyte_nolen
2814
2815 Like C<SvPV_nolen>, but converts sv to byte representation first if necessary.
2816
2817         char*   SvPVbyte_nolen(SV* sv)
2818
2819 =for hackers
2820 Found in file sv.h
2821
2822 =item SvPVutf8
2823
2824 Like C<SvPV>, but converts sv to utf8 first if necessary.
2825
2826         char*   SvPVutf8(SV* sv, STRLEN len)
2827
2828 =for hackers
2829 Found in file sv.h
2830
2831 =item SvPVutf8x
2832
2833 Like C<SvPV>, but converts sv to utf8 first if necessary.
2834 Guarantees to evaluate sv only once; use the more efficient C<SvPVutf8>
2835 otherwise.
2836
2837         char*   SvPVutf8x(SV* sv, STRLEN len)
2838
2839 =for hackers
2840 Found in file sv.h
2841
2842 =item SvPVutf8x_force
2843
2844 Like C<SvPV_force>, but converts sv to utf8 first if necessary.
2845 Guarantees to evaluate sv only once; use the more efficient C<SvPVutf8_force>
2846 otherwise.
2847
2848         char*   SvPVutf8x_force(SV* sv, STRLEN len)
2849
2850 =for hackers
2851 Found in file sv.h
2852
2853 =item SvPVutf8_force
2854
2855 Like C<SvPV_force>, but converts sv to utf8 first if necessary.
2856
2857         char*   SvPVutf8_force(SV* sv, STRLEN len)
2858
2859 =for hackers
2860 Found in file sv.h
2861
2862 =item SvPVutf8_nolen
2863
2864 Like C<SvPV_nolen>, but converts sv to utf8 first if necessary.
2865
2866         char*   SvPVutf8_nolen(SV* sv)
2867
2868 =for hackers
2869 Found in file sv.h
2870
2871 =item SvPVx
2872
2873 A version of C<SvPV> which guarantees to evaluate sv only once.
2874
2875         char*   SvPVx(SV* sv, STRLEN len)
2876
2877 =for hackers
2878 Found in file sv.h
2879
2880 =item SvPVX
2881
2882 Returns a pointer to the physical string in the SV.  The SV must contain a
2883 string.
2884
2885         char*   SvPVX(SV* sv)
2886
2887 =for hackers
2888 Found in file sv.h
2889
2890 =item SvPV_force
2891
2892 Like <SvPV> but will force the SV into becoming a string (SvPOK).  You want
2893 force if you are going to update the SvPVX directly.
2894
2895         char*   SvPV_force(SV* sv, STRLEN len)
2896
2897 =for hackers
2898 Found in file sv.h
2899
2900 =item SvPV_force_nomg
2901
2902 Like <SvPV> but will force the SV into becoming a string (SvPOK).  You want
2903 force if you are going to update the SvPVX directly. Doesn't process magic.
2904
2905         char*   SvPV_force_nomg(SV* sv, STRLEN len)
2906
2907 =for hackers
2908 Found in file sv.h
2909
2910 =item SvPV_nolen
2911
2912 Returns a pointer to the string in the SV, or a stringified form of the SV
2913 if the SV does not contain a string.  Handles 'get' magic.
2914
2915         char*   SvPV_nolen(SV* sv)
2916
2917 =for hackers
2918 Found in file sv.h
2919
2920 =item SvREFCNT
2921
2922 Returns the value of the object's reference count.
2923
2924         U32     SvREFCNT(SV* sv)
2925
2926 =for hackers
2927 Found in file sv.h
2928
2929 =item SvREFCNT_dec
2930
2931 Decrements the reference count of the given SV.
2932
2933         void    SvREFCNT_dec(SV* sv)
2934
2935 =for hackers
2936 Found in file sv.h
2937
2938 =item SvREFCNT_inc
2939
2940 Increments the reference count of the given SV.
2941
2942         SV*     SvREFCNT_inc(SV* sv)
2943
2944 =for hackers
2945 Found in file sv.h
2946
2947 =item SvROK
2948
2949 Tests if the SV is an RV.
2950
2951         bool    SvROK(SV* sv)
2952
2953 =for hackers
2954 Found in file sv.h
2955
2956 =item SvROK_off
2957
2958 Unsets the RV status of an SV.
2959
2960         void    SvROK_off(SV* sv)
2961
2962 =for hackers
2963 Found in file sv.h
2964
2965 =item SvROK_on
2966
2967 Tells an SV that it is an RV.
2968
2969         void    SvROK_on(SV* sv)
2970
2971 =for hackers
2972 Found in file sv.h
2973
2974 =item SvRV
2975
2976 Dereferences an RV to return the SV.
2977
2978         SV*     SvRV(SV* sv)
2979
2980 =for hackers
2981 Found in file sv.h
2982
2983 =item SvSTASH
2984
2985 Returns the stash of the SV.
2986
2987         HV*     SvSTASH(SV* sv)
2988
2989 =for hackers
2990 Found in file sv.h
2991
2992 =item SvTAINT
2993
2994 Taints an SV if tainting is enabled
2995
2996         void    SvTAINT(SV* sv)
2997
2998 =for hackers
2999 Found in file sv.h
3000
3001 =item SvTAINTED
3002
3003 Checks to see if an SV is tainted. Returns TRUE if it is, FALSE if
3004 not.
3005
3006         bool    SvTAINTED(SV* sv)
3007
3008 =for hackers
3009 Found in file sv.h
3010
3011 =item SvTAINTED_off
3012
3013 Untaints an SV. Be I<very> careful with this routine, as it short-circuits
3014 some of Perl's fundamental security features. XS module authors should not
3015 use this function unless they fully understand all the implications of
3016 unconditionally untainting the value. Untainting should be done in the
3017 standard perl fashion, via a carefully crafted regexp, rather than directly
3018 untainting variables.
3019
3020         void    SvTAINTED_off(SV* sv)
3021
3022 =for hackers
3023 Found in file sv.h
3024
3025 =item SvTAINTED_on
3026
3027 Marks an SV as tainted.
3028
3029         void    SvTAINTED_on(SV* sv)
3030
3031 =for hackers
3032 Found in file sv.h
3033
3034 =item SvTRUE
3035
3036 Returns a boolean indicating whether Perl would evaluate the SV as true or
3037 false, defined or undefined.  Does not handle 'get' magic.
3038
3039         bool    SvTRUE(SV* sv)
3040
3041 =for hackers
3042 Found in file sv.h
3043
3044 =item SvTYPE
3045
3046 Returns the type of the SV.  See C<svtype>.
3047
3048         svtype  SvTYPE(SV* sv)
3049
3050 =for hackers
3051 Found in file sv.h
3052
3053 =item SvUNLOCK
3054
3055 Releases a mutual exclusion lock on sv if a suitable module
3056 has been loaded.
3057
3058
3059         void    SvUNLOCK(SV* sv)
3060
3061 =for hackers
3062 Found in file sv.h
3063
3064 =item SvUOK
3065
3066 Returns a boolean indicating whether the SV contains an unsigned integer.
3067
3068         void    SvUOK(SV* sv)
3069
3070 =for hackers
3071 Found in file sv.h
3072
3073 =item SvUPGRADE
3074
3075 Used to upgrade an SV to a more complex form.  Uses C<sv_upgrade> to
3076 perform the upgrade if necessary.  See C<svtype>.
3077
3078         void    SvUPGRADE(SV* sv, svtype type)
3079
3080 =for hackers
3081 Found in file sv.h
3082
3083 =item SvUTF8
3084
3085 Returns a boolean indicating whether the SV contains UTF-8 encoded data.
3086
3087         void    SvUTF8(SV* sv)
3088
3089 =for hackers
3090 Found in file sv.h
3091
3092 =item SvUTF8_off
3093
3094 Unsets the UTF8 status of an SV.
3095
3096         void    SvUTF8_off(SV *sv)
3097
3098 =for hackers
3099 Found in file sv.h
3100
3101 =item SvUTF8_on
3102
3103 Turn on the UTF8 status of an SV (the data is not changed, just the flag).
3104 Do not use frivolously.
3105
3106         void    SvUTF8_on(SV *sv)
3107
3108 =for hackers
3109 Found in file sv.h
3110
3111 =item SvUV
3112
3113 Coerces the given SV to an unsigned integer and returns it.  See C<SvUVx>
3114 for a version which guarantees to evaluate sv only once.
3115
3116         UV      SvUV(SV* sv)
3117
3118 =for hackers
3119 Found in file sv.h
3120
3121 =item SvUVX
3122
3123 Returns the raw value in the SV's UV slot, without checks or conversions.
3124 Only use when you are sure SvIOK is true. See also C<SvUV()>.
3125
3126         UV      SvUVX(SV* sv)
3127
3128 =for hackers
3129 Found in file sv.h
3130
3131 =item SvUVx
3132
3133 Coerces the given SV to an unsigned integer and returns it. Guarantees to
3134 evaluate sv only once. Use the more efficient C<SvUV> otherwise.
3135
3136         UV      SvUVx(SV* sv)
3137
3138 =for hackers
3139 Found in file sv.h
3140
3141 =item sv_2bool
3142
3143 This function is only called on magical items, and is only used by
3144 sv_true() or its macro equivalent.
3145
3146         bool    sv_2bool(SV* sv)
3147
3148 =for hackers
3149 Found in file sv.c
3150
3151 =item sv_2cv
3152
3153 Using various gambits, try to get a CV from an SV; in addition, try if
3154 possible to set C<*st> and C<*gvp> to the stash and GV associated with it.
3155
3156         CV*     sv_2cv(SV* sv, HV** st, GV** gvp, I32 lref)
3157
3158 =for hackers
3159 Found in file sv.c
3160
3161 =item sv_2io
3162
3163 Using various gambits, try to get an IO from an SV: the IO slot if its a
3164 GV; or the recursive result if we're an RV; or the IO slot of the symbol
3165 named after the PV if we're a string.
3166
3167         IO*     sv_2io(SV* sv)
3168
3169 =for hackers
3170 Found in file sv.c
3171
3172 =item sv_2iv
3173
3174 Return the integer value of an SV, doing any necessary string conversion,
3175 magic etc. Normally used via the C<SvIV(sv)> and C<SvIVx(sv)> macros.
3176
3177         IV      sv_2iv(SV* sv)
3178
3179 =for hackers
3180 Found in file sv.c
3181
3182 =item sv_2mortal
3183
3184 Marks an existing SV as mortal.  The SV will be destroyed "soon", either
3185 by an explicit call to FREETMPS, or by an implicit call at places such as
3186 statement boundaries.  See also C<sv_newmortal> and C<sv_mortalcopy>.
3187
3188         SV*     sv_2mortal(SV* sv)
3189
3190 =for hackers
3191 Found in file sv.c
3192
3193 =item sv_2nv
3194
3195 Return the num value of an SV, doing any necessary string or integer
3196 conversion, magic etc. Normally used via the C<SvNV(sv)> and C<SvNVx(sv)>
3197 macros.
3198
3199         NV      sv_2nv(SV* sv)
3200
3201 =for hackers
3202 Found in file sv.c
3203
3204 =item sv_2pvbyte
3205
3206 Return a pointer to the byte-encoded representation of the SV, and set *lp
3207 to its length.  May cause the SV to be downgraded from UTF8 as a
3208 side-effect.
3209
3210 Usually accessed via the C<SvPVbyte> macro.
3211
3212         char*   sv_2pvbyte(SV* sv, STRLEN* lp)
3213
3214 =for hackers
3215 Found in file sv.c
3216
3217 =item sv_2pvbyte_nolen
3218
3219 Return a pointer to the byte-encoded representation of the SV.
3220 May cause the SV to be downgraded from UTF8 as a side-effect.
3221
3222 Usually accessed via the C<SvPVbyte_nolen> macro.
3223
3224         char*   sv_2pvbyte_nolen(SV* sv)
3225
3226 =for hackers
3227 Found in file sv.c
3228
3229 =item sv_2pvutf8
3230
3231 Return a pointer to the UTF8-encoded representation of the SV, and set *lp
3232 to its length.  May cause the SV to be upgraded to UTF8 as a side-effect.
3233
3234 Usually accessed via the C<SvPVutf8> macro.
3235
3236         char*   sv_2pvutf8(SV* sv, STRLEN* lp)
3237
3238 =for hackers
3239 Found in file sv.c
3240
3241 =item sv_2pvutf8_nolen
3242
3243 Return a pointer to the UTF8-encoded representation of the SV.
3244 May cause the SV to be upgraded to UTF8 as a side-effect.
3245
3246 Usually accessed via the C<SvPVutf8_nolen> macro.
3247
3248         char*   sv_2pvutf8_nolen(SV* sv)
3249
3250 =for hackers
3251 Found in file sv.c
3252
3253 =item sv_2pv_flags
3254
3255 Returns a pointer to the string value of an SV, and sets *lp to its length.
3256 If flags includes SV_GMAGIC, does an mg_get() first. Coerces sv to a string
3257 if necessary.
3258 Normally invoked via the C<SvPV_flags> macro. C<sv_2pv()> and C<sv_2pv_nomg>
3259 usually end up here too.
3260
3261         char*   sv_2pv_flags(SV* sv, STRLEN* lp, I32 flags)
3262
3263 =for hackers
3264 Found in file sv.c
3265
3266 =item sv_2pv_nolen
3267
3268 Like C<sv_2pv()>, but doesn't return the length too. You should usually
3269 use the macro wrapper C<SvPV_nolen(sv)> instead.
3270         char*   sv_2pv_nolen(SV* sv)
3271
3272 =for hackers
3273 Found in file sv.c
3274
3275 =item sv_2uv
3276
3277 Return the unsigned integer value of an SV, doing any necessary string
3278 conversion, magic etc. Normally used via the C<SvUV(sv)> and C<SvUVx(sv)>
3279 macros.
3280
3281         UV      sv_2uv(SV* sv)
3282
3283 =for hackers
3284 Found in file sv.c
3285
3286 =item sv_backoff
3287
3288 Remove any string offset. You should normally use the C<SvOOK_off> macro
3289 wrapper instead.
3290
3291         int     sv_backoff(SV* sv)
3292
3293 =for hackers
3294 Found in file sv.c
3295
3296 =item sv_bless
3297
3298 Blesses an SV into a specified package.  The SV must be an RV.  The package
3299 must be designated by its stash (see C<gv_stashpv()>).  The reference count
3300 of the SV is unaffected.
3301
3302         SV*     sv_bless(SV* sv, HV* stash)
3303
3304 =for hackers
3305 Found in file sv.c
3306
3307 =item sv_catpv
3308
3309 Concatenates the string onto the end of the string which is in the SV.
3310 If the SV has the UTF8 status set, then the bytes appended should be
3311 valid UTF8.  Handles 'get' magic, but not 'set' magic.  See C<sv_catpv_mg>.
3312
3313         void    sv_catpv(SV* sv, const char* ptr)
3314
3315 =for hackers
3316 Found in file sv.c
3317
3318 =item sv_catpvf
3319
3320 Processes its arguments like C<sprintf> and appends the formatted
3321 output to an SV.  If the appended data contains "wide" characters
3322 (including, but not limited to, SVs with a UTF-8 PV formatted with %s,
3323 and characters >255 formatted with %c), the original SV might get
3324 upgraded to UTF-8.  Handles 'get' magic, but not 'set' magic.
3325 C<SvSETMAGIC()> must typically be called after calling this function
3326 to handle 'set' magic.
3327
3328         void    sv_catpvf(SV* sv, const char* pat, ...)
3329
3330 =for hackers
3331 Found in file sv.c
3332
3333 =item sv_catpvf_mg
3334
3335 Like C<sv_catpvf>, but also handles 'set' magic.
3336
3337         void    sv_catpvf_mg(SV *sv, const char* pat, ...)
3338
3339 =for hackers
3340 Found in file sv.c
3341
3342 =item sv_catpvn
3343
3344 Concatenates the string onto the end of the string which is in the SV.  The
3345 C<len> indicates number of bytes to copy.  If the SV has the UTF8
3346 status set, then the bytes appended should be valid UTF8.
3347 Handles 'get' magic, but not 'set' magic.  See C<sv_catpvn_mg>.
3348
3349         void    sv_catpvn(SV* sv, const char* ptr, STRLEN len)
3350
3351 =for hackers
3352 Found in file sv.c
3353
3354 =item sv_catpvn_flags
3355
3356 Concatenates the string onto the end of the string which is in the SV.  The
3357 C<len> indicates number of bytes to copy.  If the SV has the UTF8
3358 status set, then the bytes appended should be valid UTF8.
3359 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<dsv> if
3360 appropriate, else not. C<sv_catpvn> and C<sv_catpvn_nomg> are implemented
3361 in terms of this function.
3362
3363         void    sv_catpvn_flags(SV* sv, const char* ptr, STRLEN len, I32 flags)
3364
3365 =for hackers
3366 Found in file sv.c
3367
3368 =item sv_catpvn_mg
3369
3370 Like C<sv_catpvn>, but also handles 'set' magic.
3371
3372         void    sv_catpvn_mg(SV *sv, const char *ptr, STRLEN len)
3373
3374 =for hackers
3375 Found in file sv.c
3376
3377 =item sv_catpv_mg
3378
3379 Like C<sv_catpv>, but also handles 'set' magic.
3380
3381         void    sv_catpv_mg(SV *sv, const char *ptr)
3382
3383 =for hackers
3384 Found in file sv.c
3385
3386 =item sv_catsv
3387
3388 Concatenates the string from SV C<ssv> onto the end of the string in
3389 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  Handles 'get' magic, but
3390 not 'set' magic.  See C<sv_catsv_mg>.
3391
3392         void    sv_catsv(SV* dsv, SV* ssv)
3393
3394 =for hackers
3395 Found in file sv.c
3396
3397 =item sv_catsv_flags
3398
3399 Concatenates the string from SV C<ssv> onto the end of the string in
3400 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  If C<flags> has C<SV_GMAGIC>
3401 bit set, will C<mg_get> on the SVs if appropriate, else not. C<sv_catsv>
3402 and C<sv_catsv_nomg> are implemented in terms of this function.
3403
3404         void    sv_catsv_flags(SV* dsv, SV* ssv, I32 flags)
3405
3406 =for hackers
3407 Found in file sv.c
3408
3409 =item sv_catsv_mg
3410
3411 Like C<sv_catsv>, but also handles 'set' magic.
3412
3413         void    sv_catsv_mg(SV *dstr, SV *sstr)
3414
3415 =for hackers
3416 Found in file sv.c
3417
3418 =item sv_chop
3419
3420 Efficient removal of characters from the beginning of the string buffer.
3421 SvPOK(sv) must be true and the C<ptr> must be a pointer to somewhere inside
3422 the string buffer.  The C<ptr> becomes the first character of the adjusted
3423 string. Uses the "OOK hack".
3424
3425         void    sv_chop(SV* sv, char* ptr)
3426
3427 =for hackers
3428 Found in file sv.c
3429
3430 =item sv_clear
3431
3432 Clear an SV: call any destructors, free up any memory used by the body,
3433 and free the body itself. The SV's head is I<not> freed, although
3434 its type is set to all 1's so that it won't inadvertently be assumed
3435 to be live during global destruction etc.
3436 This function should only be called when REFCNT is zero. Most of the time
3437 you'll want to call C<sv_free()> (or its macro wrapper C<SvREFCNT_dec>)
3438 instead.
3439
3440         void    sv_clear(SV* sv)
3441
3442 =for hackers
3443 Found in file sv.c
3444
3445 =item sv_cmp
3446
3447 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
3448 string in C<sv1> is less than, equal to, or greater than the string in
3449 C<sv2>. Is UTF-8 and 'use bytes' aware, handles get magic, and will
3450 coerce its args to strings if necessary.  See also C<sv_cmp_locale>.
3451
3452         I32     sv_cmp(SV* sv1, SV* sv2)
3453
3454 =for hackers
3455 Found in file sv.c
3456
3457 =item sv_cmp_locale
3458
3459 Compares the strings in two SVs in a locale-aware manner. Is UTF-8 and
3460 'use bytes' aware, handles get magic, and will coerce its args to strings
3461 if necessary.  See also C<sv_cmp_locale>.  See also C<sv_cmp>.
3462
3463         I32     sv_cmp_locale(SV* sv1, SV* sv2)
3464
3465 =for hackers
3466 Found in file sv.c
3467
3468 =item sv_collxfrm
3469
3470 Add Collate Transform magic to an SV if it doesn't already have it.
3471
3472 Any scalar variable may carry PERL_MAGIC_collxfrm magic that contains the
3473 scalar data of the variable, but transformed to such a format that a normal
3474 memory comparison can be used to compare the data according to the locale
3475 settings.
3476
3477         char*   sv_collxfrm(SV* sv, STRLEN* nxp)
3478
3479 =for hackers
3480 Found in file sv.c
3481
3482 =item sv_dec
3483
3484 Auto-decrement of the value in the SV, doing string to numeric conversion
3485 if necessary. Handles 'get' magic.
3486
3487         void    sv_dec(SV* sv)
3488
3489 =for hackers
3490 Found in file sv.c
3491
3492 =item sv_derived_from
3493
3494 Returns a boolean indicating whether the SV is derived from the specified
3495 class.  This is the function that implements C<UNIVERSAL::isa>.  It works
3496 for class names as well as for objects.
3497
3498         bool    sv_derived_from(SV* sv, const char* name)
3499
3500 =for hackers
3501 Found in file universal.c
3502
3503 =item sv_eq
3504
3505 Returns a boolean indicating whether the strings in the two SVs are
3506 identical. Is UTF-8 and 'use bytes' aware, handles get magic, and will
3507 coerce its args to strings if necessary.
3508
3509         I32     sv_eq(SV* sv1, SV* sv2)
3510
3511 =for hackers
3512 Found in file sv.c
3513
3514 =item sv_force_normal
3515
3516 Undo various types of fakery on an SV: if the PV is a shared string, make
3517 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
3518 an xpvmg. See also C<sv_force_normal_flags>.
3519
3520         void    sv_force_normal(SV *sv)
3521
3522 =for hackers
3523 Found in file sv.c
3524
3525 =item sv_force_normal_flags
3526
3527 Undo various types of fakery on an SV: if the PV is a shared string, make
3528 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
3529 an xpvmg. The C<flags> parameter gets passed to  C<sv_unref_flags()>
3530 when unrefing. C<sv_force_normal> calls this function with flags set to 0.
3531
3532         void    sv_force_normal_flags(SV *sv, U32 flags)
3533
3534 =for hackers
3535 Found in file sv.c
3536
3537 =item sv_free
3538
3539 Decrement an SV's reference count, and if it drops to zero, call
3540 C<sv_clear> to invoke destructors and free up any memory used by
3541 the body; finally, deallocate the SV's head itself.
3542 Normally called via a wrapper macro C<SvREFCNT_dec>.
3543
3544         void    sv_free(SV* sv)
3545
3546 =for hackers
3547 Found in file sv.c
3548
3549 =item sv_gets
3550
3551 Get a line from the filehandle and store it into the SV, optionally
3552 appending to the currently-stored string.
3553
3554         char*   sv_gets(SV* sv, PerlIO* fp, I32 append)
3555
3556 =for hackers
3557 Found in file sv.c
3558
3559 =item sv_grow
3560
3561 Expands the character buffer in the SV.  If necessary, uses C<sv_unref> and
3562 upgrades the SV to C<SVt_PV>.  Returns a pointer to the character buffer.
3563 Use the C<SvGROW> wrapper instead.
3564
3565         char*   sv_grow(SV* sv, STRLEN newlen)
3566
3567 =for hackers
3568 Found in file sv.c
3569
3570 =item sv_inc
3571
3572 Auto-increment of the value in the SV, doing string to numeric conversion
3573 if necessary. Handles 'get' magic.
3574
3575         void    sv_inc(SV* sv)
3576
3577 =for hackers
3578 Found in file sv.c
3579
3580 =item sv_insert
3581
3582 Inserts a string at the specified offset/length within the SV. Similar to
3583 the Perl substr() function.
3584
3585         void    sv_insert(SV* bigsv, STRLEN offset, STRLEN len, char* little, STRLEN littlelen)
3586
3587 =for hackers
3588 Found in file sv.c
3589
3590 =item sv_isa
3591
3592 Returns a boolean indicating whether the SV is blessed into the specified
3593 class.  This does not check for subtypes; use C<sv_derived_from> to verify
3594 an inheritance relationship.
3595
3596         int     sv_isa(SV* sv, const char* name)
3597
3598 =for hackers
3599 Found in file sv.c
3600
3601 =item sv_isobject
3602
3603 Returns a boolean indicating whether the SV is an RV pointing to a blessed
3604 object.  If the SV is not an RV, or if the object is not blessed, then this
3605 will return false.
3606
3607         int     sv_isobject(SV* sv)
3608
3609 =for hackers
3610 Found in file sv.c
3611
3612 =item sv_iv
3613
3614 A private implementation of the C<SvIVx> macro for compilers which can't
3615 cope with complex macro expressions. Always use the macro instead.
3616
3617         IV      sv_iv(SV* sv)
3618
3619 =for hackers
3620 Found in file sv.c
3621
3622 =item sv_len
3623
3624 Returns the length of the string in the SV. Handles magic and type
3625 coercion.  See also C<SvCUR>, which gives raw access to the xpv_cur slot.
3626
3627         STRLEN  sv_len(SV* sv)
3628
3629 =for hackers
3630 Found in file sv.c
3631
3632 =item sv_len_utf8
3633
3634 Returns the number of characters in the string in an SV, counting wide
3635 UTF8 bytes as a single character. Handles magic and type coercion.
3636
3637         STRLEN  sv_len_utf8(SV* sv)
3638
3639 =for hackers
3640 Found in file sv.c
3641
3642 =item sv_magic
3643
3644 Adds magic to an SV. First upgrades C<sv> to type C<SVt_PVMG> if necessary,
3645 then adds a new magic item of type C<how> to the head of the magic list.
3646
3647         void    sv_magic(SV* sv, SV* obj, int how, const char* name, I32 namlen)
3648
3649 =for hackers
3650 Found in file sv.c
3651
3652 =item sv_magicext
3653
3654 Adds magic to an SV, upgrading it if necessary. Applies the
3655 supplied vtable and returns pointer to the magic added.
3656
3657 Note that sv_magicext will allow things that sv_magic will not.
3658 In particular you can add magic to SvREADONLY SVs and and more than
3659 one instance of the same 'how'
3660
3661 I C<namelen> is greater then zero then a savepvn() I<copy> of C<name> is stored,
3662 if C<namelen> is zero then C<name> is stored as-is and - as another special
3663 case - if C<(name && namelen == HEf_SVKEY)> then C<name> is assumed to contain
3664 an C<SV*> and has its REFCNT incremented
3665
3666 (This is now used as a subroutine by sv_magic.)
3667
3668         MAGIC * sv_magicext(SV* sv, SV* obj, int how, MGVTBL *vtbl, const char* name, I32 namlen        )
3669
3670 =for hackers
3671 Found in file sv.c
3672
3673 =item sv_mortalcopy
3674
3675 Creates a new SV which is a copy of the original SV (using C<sv_setsv>).
3676 The new SV is marked as mortal. It will be destroyed "soon", either by an
3677 explicit call to FREETMPS, or by an implicit call at places such as
3678 statement boundaries.  See also C<sv_newmortal> and C<sv_2mortal>.
3679
3680         SV*     sv_mortalcopy(SV* oldsv)
3681
3682 =for hackers
3683 Found in file sv.c
3684
3685 =item sv_newmortal
3686
3687 Creates a new null SV which is mortal.  The reference count of the SV is
3688 set to 1. It will be destroyed "soon", either by an explicit call to
3689 FREETMPS, or by an implicit call at places such as statement boundaries.
3690 See also C<sv_mortalcopy> and C<sv_2mortal>.
3691
3692         SV*     sv_newmortal()
3693
3694 =for hackers
3695 Found in file sv.c
3696
3697 =item sv_newref
3698
3699 Increment an SV's reference count. Use the C<SvREFCNT_inc()> wrapper
3700 instead.
3701
3702         SV*     sv_newref(SV* sv)
3703
3704 =for hackers
3705 Found in file sv.c
3706
3707 =item sv_nolocking
3708
3709 Dummy routine which "locks" an SV when there is no locking module present.
3710 Exists to avoid test for a NULL function pointer and because it could potentially warn under
3711 some level of strict-ness.
3712
3713         void    sv_nolocking(SV *)
3714
3715 =for hackers
3716 Found in file util.c
3717
3718 =item sv_nosharing
3719
3720 Dummy routine which "shares" an SV when there is no sharing module present.
3721 Exists to avoid test for a NULL function pointer and because it could potentially warn under
3722 some level of strict-ness.
3723
3724         void    sv_nosharing(SV *)
3725
3726 =for hackers
3727 Found in file util.c
3728
3729 =item sv_nounlocking
3730
3731 Dummy routine which "unlocks" an SV when there is no locking module present.
3732 Exists to avoid test for a NULL function pointer and because it could potentially warn under
3733 some level of strict-ness.
3734
3735         void    sv_nounlocking(SV *)
3736
3737 =for hackers
3738 Found in file util.c
3739
3740 =item sv_nv
3741
3742 A private implementation of the C<SvNVx> macro for compilers which can't
3743 cope with complex macro expressions. Always use the macro instead.
3744
3745         NV      sv_nv(SV* sv)
3746
3747 =for hackers
3748 Found in file sv.c
3749
3750 =item sv_pos_b2u
3751
3752 Converts the value pointed to by offsetp from a count of bytes from the
3753 start of the string, to a count of the equivalent number of UTF8 chars.
3754 Handles magic and type coercion.
3755
3756         void    sv_pos_b2u(SV* sv, I32* offsetp)
3757
3758 =for hackers
3759 Found in file sv.c
3760
3761 =item sv_pos_u2b
3762
3763 Converts the value pointed to by offsetp from a count of UTF8 chars from
3764 the start of the string, to a count of the equivalent number of bytes; if
3765 lenp is non-zero, it does the same to lenp, but this time starting from
3766 the offset, rather than from the start of the string. Handles magic and
3767 type coercion.
3768
3769         void    sv_pos_u2b(SV* sv, I32* offsetp, I32* lenp)
3770
3771 =for hackers
3772 Found in file sv.c
3773
3774 =item sv_pv
3775
3776 A private implementation of the C<SvPV_nolen> macro for compilers which can't
3777 cope with complex macro expressions. Always use the macro instead.
3778
3779         char*   sv_pv(SV *sv)
3780
3781 =for hackers
3782 Found in file sv.c
3783
3784 =item sv_pvbyte
3785
3786 A private implementation of the C<SvPVbyte_nolen> macro for compilers
3787 which can't cope with complex macro expressions. Always use the macro
3788 instead.
3789
3790         char*   sv_pvbyte(SV *sv)
3791
3792 =for hackers
3793 Found in file sv.c
3794
3795 =item sv_pvbyten
3796
3797 A private implementation of the C<SvPVbyte> macro for compilers
3798 which can't cope with complex macro expressions. Always use the macro
3799 instead.
3800
3801         char*   sv_pvbyten(SV *sv, STRLEN *len)
3802
3803 =for hackers
3804 Found in file sv.c
3805
3806 =item sv_pvbyten_force
3807
3808 A private implementation of the C<SvPVbytex_force> macro for compilers
3809 which can't cope with complex macro expressions. Always use the macro
3810 instead.
3811
3812         char*   sv_pvbyten_force(SV* sv, STRLEN* lp)
3813
3814 =for hackers
3815 Found in file sv.c
3816
3817 =item sv_pvn
3818
3819 A private implementation of the C<SvPV> macro for compilers which can't
3820 cope with complex macro expressions. Always use the macro instead.
3821
3822         char*   sv_pvn(SV *sv, STRLEN *len)
3823
3824 =for hackers
3825 Found in file sv.c
3826
3827 =item sv_pvn_force
3828
3829 Get a sensible string out of the SV somehow.
3830 A private implementation of the C<SvPV_force> macro for compilers which
3831 can't cope with complex macro expressions. Always use the macro instead.
3832
3833         char*   sv_pvn_force(SV* sv, STRLEN* lp)
3834
3835 =for hackers
3836 Found in file sv.c
3837
3838 =item sv_pvn_force_flags
3839
3840 Get a sensible string out of the SV somehow.
3841 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<sv> if
3842 appropriate, else not. C<sv_pvn_force> and C<sv_pvn_force_nomg> are
3843 implemented in terms of this function.
3844 You normally want to use the various wrapper macros instead: see
3845 C<SvPV_force> and C<SvPV_force_nomg>
3846
3847         char*   sv_pvn_force_flags(SV* sv, STRLEN* lp, I32 flags)
3848
3849 =for hackers
3850 Found in file sv.c
3851
3852 =item sv_pvutf8
3853
3854 A private implementation of the C<SvPVutf8_nolen> macro for compilers
3855 which can't cope with complex macro expressions. Always use the macro
3856 instead.
3857
3858         char*   sv_pvutf8(SV *sv)
3859
3860 =for hackers
3861 Found in file sv.c
3862
3863 =item sv_pvutf8n
3864
3865 A private implementation of the C<SvPVutf8> macro for compilers
3866 which can't cope with complex macro expressions. Always use the macro
3867 instead.
3868
3869         char*   sv_pvutf8n(SV *sv, STRLEN *len)
3870
3871 =for hackers
3872 Found in file sv.c
3873
3874 =item sv_pvutf8n_force
3875
3876 A private implementation of the C<SvPVutf8_force> macro for compilers
3877 which can't cope with complex macro expressions. Always use the macro
3878 instead.
3879
3880         char*   sv_pvutf8n_force(SV* sv, STRLEN* lp)
3881
3882 =for hackers
3883 Found in file sv.c
3884
3885 =item sv_reftype
3886
3887 Returns a string describing what the SV is a reference to.
3888
3889         char*   sv_reftype(SV* sv, int ob)
3890
3891 =for hackers
3892 Found in file sv.c
3893
3894 =item sv_replace
3895
3896 Make the first argument a copy of the second, then delete the original.
3897 The target SV physically takes over ownership of the body of the source SV
3898 and inherits its flags; however, the target keeps any magic it owns,
3899 and any magic in the source is discarded.
3900 Note that this is a rather specialist SV copying operation; most of the
3901 time you'll want to use C<sv_setsv> or one of its many macro front-ends.
3902
3903         void    sv_replace(SV* sv, SV* nsv)
3904
3905 =for hackers
3906 Found in file sv.c
3907
3908 =item sv_report_used
3909
3910 Dump the contents of all SVs not yet freed. (Debugging aid).
3911
3912         void    sv_report_used()
3913
3914 =for hackers
3915 Found in file sv.c
3916
3917 =item sv_reset
3918
3919 Underlying implementation for the C<reset> Perl function.
3920 Note that the perl-level function is vaguely deprecated.
3921
3922         void    sv_reset(char* s, HV* stash)
3923
3924 =for hackers
3925 Found in file sv.c
3926
3927 =item sv_rvweaken
3928
3929 Weaken a reference: set the C<SvWEAKREF> flag on this RV; give the
3930 referred-to SV C<PERL_MAGIC_backref> magic if it hasn't already; and
3931 push a back-reference to this RV onto the array of backreferences
3932 associated with that magic.
3933
3934         SV*     sv_rvweaken(SV *sv)
3935
3936 =for hackers
3937 Found in file sv.c
3938
3939 =item sv_setiv
3940
3941 Copies an integer into the given SV, upgrading first if necessary.
3942 Does not handle 'set' magic.  See also C<sv_setiv_mg>.
3943
3944         void    sv_setiv(SV* sv, IV num)
3945
3946 =for hackers
3947 Found in file sv.c
3948
3949 =item sv_setiv_mg
3950
3951 Like C<sv_setiv>, but also handles 'set' magic.
3952
3953         void    sv_setiv_mg(SV *sv, IV i)
3954
3955 =for hackers
3956 Found in file sv.c
3957
3958 =item sv_setnv
3959
3960 Copies a double into the given SV, upgrading first if necessary.
3961 Does not handle 'set' magic.  See also C<sv_setnv_mg>.
3962
3963         void    sv_setnv(SV* sv, NV num)
3964
3965 =for hackers
3966 Found in file sv.c
3967
3968 =item sv_setnv_mg
3969
3970 Like C<sv_setnv>, but also handles 'set' magic.
3971
3972         void    sv_setnv_mg(SV *sv, NV num)
3973
3974 =for hackers
3975 Found in file sv.c
3976
3977 =item sv_setpv
3978
3979 Copies a string into an SV.  The string must be null-terminated.  Does not
3980 handle 'set' magic.  See C<sv_setpv_mg>.
3981
3982         void    sv_setpv(SV* sv, const char* ptr)
3983
3984 =for hackers
3985 Found in file sv.c
3986
3987 =item sv_setpvf
3988
3989 Processes its arguments like C<sprintf> and sets an SV to the formatted
3990 output.  Does not handle 'set' magic.  See C<sv_setpvf_mg>.
3991
3992         void    sv_setpvf(SV* sv, const char* pat, ...)
3993
3994 =for hackers
3995 Found in file sv.c
3996
3997 =item sv_setpvf_mg
3998
3999 Like C<sv_setpvf>, but also handles 'set' magic.
4000
4001         void    sv_setpvf_mg(SV *sv, const char* pat, ...)
4002
4003 =for hackers
4004 Found in file sv.c
4005
4006 =item sv_setpviv
4007
4008 Copies an integer into the given SV, also updating its string value.
4009 Does not handle 'set' magic.  See C<sv_setpviv_mg>.
4010
4011         void    sv_setpviv(SV* sv, IV num)
4012
4013 =for hackers
4014 Found in file sv.c
4015
4016 =item sv_setpviv_mg
4017
4018 Like C<sv_setpviv>, but also handles 'set' magic.
4019
4020         void    sv_setpviv_mg(SV *sv, IV iv)
4021
4022 =for hackers
4023 Found in file sv.c
4024
4025 =item sv_setpvn
4026
4027 Copies a string into an SV.  The C<len> parameter indicates the number of
4028 bytes to be copied.  Does not handle 'set' magic.  See C<sv_setpvn_mg>.
4029
4030         void    sv_setpvn(SV* sv, const char* ptr, STRLEN len)
4031
4032 =for hackers
4033 Found in file sv.c
4034
4035 =item sv_setpvn_mg
4036
4037 Like C<sv_setpvn>, but also handles 'set' magic.
4038
4039         void    sv_setpvn_mg(SV *sv, const char *ptr, STRLEN len)
4040
4041 =for hackers
4042 Found in file sv.c
4043
4044 =item sv_setpv_mg
4045
4046 Like C<sv_setpv>, but also handles 'set' magic.
4047
4048         void    sv_setpv_mg(SV *sv, const char *ptr)
4049
4050 =for hackers
4051 Found in file sv.c
4052
4053 =item sv_setref_iv
4054
4055 Copies an integer into a new SV, optionally blessing the SV.  The C<rv>
4056 argument will be upgraded to an RV.  That RV will be modified to point to
4057 the new SV.  The C<classname> argument indicates the package for the
4058 blessing.  Set C<classname> to C<Nullch> to avoid the blessing.  The new SV
4059 will be returned and will have a reference count of 1.
4060
4061         SV*     sv_setref_iv(SV* rv, const char* classname, IV iv)
4062
4063 =for hackers
4064 Found in file sv.c
4065
4066 =item sv_setref_nv
4067
4068 Copies a double into a new SV, optionally blessing the SV.  The C<rv>
4069 argument will be upgraded to an RV.  That RV will be modified to point to
4070 the new SV.  The C<classname> argument indicates the package for the
4071 blessing.  Set C<classname> to C<Nullch> to avoid the blessing.  The new SV
4072 will be returned and will have a reference count of 1.
4073
4074         SV*     sv_setref_nv(SV* rv, const char* classname, NV nv)
4075
4076 =for hackers
4077 Found in file sv.c
4078
4079 =item sv_setref_pv
4080
4081 Copies a pointer into a new SV, optionally blessing the SV.  The C<rv>
4082 argument will be upgraded to an RV.  That RV will be modified to point to
4083 the new SV.  If the C<pv> argument is NULL then C<PL_sv_undef> will be placed
4084 into the SV.  The C<classname> argument indicates the package for the
4085 blessing.  Set C<classname> to C<Nullch> to avoid the blessing.  The new SV
4086 will be returned and will have a reference count of 1.
4087
4088 Do not use with other Perl types such as HV, AV, SV, CV, because those
4089 objects will become corrupted by the pointer copy process.
4090
4091 Note that C<sv_setref_pvn> copies the string while this copies the pointer.
4092
4093         SV*     sv_setref_pv(SV* rv, const char* classname, void* pv)
4094
4095 =for hackers
4096 Found in file sv.c
4097
4098 =item sv_setref_pvn
4099
4100 Copies a string into a new SV, optionally blessing the SV.  The length of the
4101 string must be specified with C<n>.  The C<rv> argument will be upgraded to
4102 an RV.  That RV will be modified to point to the new SV.  The C<classname>
4103 argument indicates the package for the blessing.  Set C<classname> to
4104 C<Nullch> to avoid the blessing.  The new SV will be returned and will have
4105 a reference count of 1.
4106
4107 Note that C<sv_setref_pv> copies the pointer while this copies the string.
4108
4109         SV*     sv_setref_pvn(SV* rv, const char* classname, char* pv, STRLEN n)
4110
4111 =for hackers
4112 Found in file sv.c
4113
4114 =item sv_setref_uv
4115
4116 Copies an unsigned integer into a new SV, optionally blessing the SV.  The C<rv>
4117 argument will be upgraded to an RV.  That RV will be modified to point to
4118 the new SV.  The C<classname> argument indicates the package for the
4119 blessing.  Set C<classname> to C<Nullch> to avoid the blessing.  The new SV
4120 will be returned and will have a reference count of 1.
4121
4122         SV*     sv_setref_uv(SV* rv, const char* classname, UV uv)
4123
4124 =for hackers
4125 Found in file sv.c
4126
4127 =item sv_setsv
4128
4129 Copies the contents of the source SV C<ssv> into the destination SV
4130 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
4131 function if the source SV needs to be reused. Does not handle 'set' magic.
4132 Loosely speaking, it performs a copy-by-value, obliterating any previous
4133 content of the destination.
4134
4135 You probably want to use one of the assortment of wrappers, such as
4136 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
4137 C<SvSetMagicSV_nosteal>.
4138
4139
4140         void    sv_setsv(SV* dsv, SV* ssv)
4141
4142 =for hackers
4143 Found in file sv.c
4144
4145 =item sv_setsv_flags
4146
4147 Copies the contents of the source SV C<ssv> into the destination SV
4148 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
4149 function if the source SV needs to be reused. Does not handle 'set' magic.
4150 Loosely speaking, it performs a copy-by-value, obliterating any previous
4151 content of the destination.
4152 If the C<flags> parameter has the C<SV_GMAGIC> bit set, will C<mg_get> on
4153 C<ssv> if appropriate, else not. C<sv_setsv> and C<sv_setsv_nomg> are
4154 implemented in terms of this function.
4155
4156 You probably want to use one of the assortment of wrappers, such as
4157 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
4158 C<SvSetMagicSV_nosteal>.
4159
4160 This is the primary function for copying scalars, and most other
4161 copy-ish functions and macros use this underneath.
4162
4163         void    sv_setsv_flags(SV* dsv, SV* ssv, I32 flags)
4164
4165 =for hackers
4166 Found in file sv.c
4167
4168 =item sv_setsv_mg
4169
4170 Like C<sv_setsv>, but also handles 'set' magic.
4171
4172         void    sv_setsv_mg(SV *dstr, SV *sstr)
4173
4174 =for hackers
4175 Found in file sv.c
4176
4177 =item sv_setuv
4178
4179 Copies an unsigned integer into the given SV, upgrading first if necessary.
4180 Does not handle 'set' magic.  See also C<sv_setuv_mg>.
4181
4182         void    sv_setuv(SV* sv, UV num)
4183
4184 =for hackers
4185 Found in file sv.c
4186
4187 =item sv_setuv_mg
4188
4189 Like C<sv_setuv>, but also handles 'set' magic.
4190
4191         void    sv_setuv_mg(SV *sv, UV u)
4192
4193 =for hackers
4194 Found in file sv.c
4195
4196 =item sv_taint
4197
4198 Taint an SV. Use C<SvTAINTED_on> instead.
4199         void    sv_taint(SV* sv)
4200
4201 =for hackers
4202 Found in file sv.c
4203
4204 =item sv_tainted
4205
4206 Test an SV for taintedness. Use C<SvTAINTED> instead.
4207         bool    sv_tainted(SV* sv)
4208
4209 =for hackers
4210 Found in file sv.c
4211
4212 =item sv_true
4213
4214 Returns true if the SV has a true value by Perl's rules.
4215 Use the C<SvTRUE> macro instead, which may call C<sv_true()> or may
4216 instead use an in-line version.
4217
4218         I32     sv_true(SV *sv)
4219
4220 =for hackers
4221 Found in file sv.c
4222
4223 =item sv_unmagic
4224
4225 Removes all magic of type C<type> from an SV.
4226
4227         int     sv_unmagic(SV* sv, int type)
4228
4229 =for hackers
4230 Found in file sv.c
4231
4232 =item sv_unref
4233
4234 Unsets the RV status of the SV, and decrements the reference count of
4235 whatever was being referenced by the RV.  This can almost be thought of
4236 as a reversal of C<newSVrv>.  This is C<sv_unref_flags> with the C<flag>
4237 being zero.  See C<SvROK_off>.
4238
4239         void    sv_unref(SV* sv)
4240
4241 =for hackers
4242 Found in file sv.c
4243
4244 =item sv_unref_flags
4245
4246 Unsets the RV status of the SV, and decrements the reference count of
4247 whatever was being referenced by the RV.  This can almost be thought of
4248 as a reversal of C<newSVrv>.  The C<cflags> argument can contain
4249 C<SV_IMMEDIATE_UNREF> to force the reference count to be decremented
4250 (otherwise the decrementing is conditional on the reference count being
4251 different from one or the reference being a readonly SV).
4252 See C<SvROK_off>.
4253
4254         void    sv_unref_flags(SV* sv, U32 flags)
4255
4256 =for hackers
4257 Found in file sv.c
4258
4259 =item sv_untaint
4260
4261 Untaint an SV. Use C<SvTAINTED_off> instead.
4262         void    sv_untaint(SV* sv)
4263
4264 =for hackers
4265 Found in file sv.c
4266
4267 =item sv_upgrade
4268
4269 Upgrade an SV to a more complex form.  Generally adds a new body type to the
4270 SV, then copies across as much information as possible from the old body.
4271 You generally want to use the C<SvUPGRADE> macro wrapper. See also C<svtype>.
4272
4273         bool    sv_upgrade(SV* sv, U32 mt)
4274
4275 =for hackers
4276 Found in file sv.c
4277
4278 =item sv_usepvn
4279
4280 Tells an SV to use C<ptr> to find its string value.  Normally the string is
4281 stored inside the SV but sv_usepvn allows the SV to use an outside string.
4282 The C<ptr> should point to memory that was allocated by C<malloc>.  The
4283 string length, C<len>, must be supplied.  This function will realloc the
4284 memory pointed to by C<ptr>, so that pointer should not be freed or used by
4285 the programmer after giving it to sv_usepvn.  Does not handle 'set' magic.
4286 See C<sv_usepvn_mg>.
4287
4288         void    sv_usepvn(SV* sv, char* ptr, STRLEN len)
4289
4290 =for hackers
4291 Found in file sv.c
4292
4293 =item sv_usepvn_mg
4294
4295 Like C<sv_usepvn>, but also handles 'set' magic.
4296
4297         void    sv_usepvn_mg(SV *sv, char *ptr, STRLEN len)
4298
4299 =for hackers
4300 Found in file sv.c
4301
4302 =item sv_utf8_decode
4303
4304 Convert the octets in the PV from UTF-8 to chars. Scan for validity and then
4305 turn off SvUTF8 if needed so that we see characters. Used as a building block
4306 for decode_utf8 in Encode.xs
4307
4308 NOTE: this function is experimental and may change or be
4309 removed without notice.
4310
4311         bool    sv_utf8_decode(SV *sv)
4312
4313 =for hackers
4314 Found in file sv.c
4315
4316 =item sv_utf8_downgrade
4317
4318 Attempt to convert the PV of an SV from UTF8-encoded to byte encoding.
4319 This may not be possible if the PV contains non-byte encoding characters;
4320 if this is the case, either returns false or, if C<fail_ok> is not
4321 true, croaks.
4322
4323 NOTE: this function is experimental and may change or be
4324 removed without notice.
4325
4326         bool    sv_utf8_downgrade(SV *sv, bool fail_ok)
4327
4328 =for hackers
4329 Found in file sv.c
4330
4331 =item sv_utf8_encode
4332
4333 Convert the PV of an SV to UTF8-encoded, but then turn off the C<SvUTF8>
4334 flag so that it looks like octets again. Used as a building block
4335 for encode_utf8 in Encode.xs
4336
4337         void    sv_utf8_encode(SV *sv)
4338
4339 =for hackers
4340 Found in file sv.c
4341
4342 =item sv_utf8_upgrade
4343
4344 Convert the PV of an SV to its UTF8-encoded form.
4345 Forces the SV to string form if it is not already.
4346 Always sets the SvUTF8 flag to avoid future validity checks even
4347 if all the bytes have hibit clear.
4348
4349         STRLEN  sv_utf8_upgrade(SV *sv)
4350
4351 =for hackers
4352 Found in file sv.c
4353
4354 =item sv_utf8_upgrade_flags
4355
4356 Convert the PV of an SV to its UTF8-encoded form.
4357 Forces the SV to string form if it is not already.
4358 Always sets the SvUTF8 flag to avoid future validity checks even
4359 if all the bytes have hibit clear. If C<flags> has C<SV_GMAGIC> bit set,
4360 will C<mg_get> on C<sv> if appropriate, else not. C<sv_utf8_upgrade> and
4361 C<sv_utf8_upgrade_nomg> are implemented in terms of this function.
4362
4363         STRLEN  sv_utf8_upgrade_flags(SV *sv, I32 flags)
4364
4365 =for hackers
4366 Found in file sv.c
4367
4368 =item sv_uv
4369
4370 A private implementation of the C<SvUVx> macro for compilers which can't
4371 cope with complex macro expressions. Always use the macro instead.
4372
4373         UV      sv_uv(SV* sv)
4374
4375 =for hackers
4376 Found in file sv.c
4377
4378 =item sv_vcatpvfn
4379
4380 Processes its arguments like C<vsprintf> and appends the formatted output
4381 to an SV.  Uses an array of SVs if the C style variable argument list is
4382 missing (NULL).  When running with taint checks enabled, indicates via
4383 C<maybe_tainted> if results are untrustworthy (often due to the use of
4384 locales).
4385
4386 Usually used via one of its frontends C<sv_catpvf> and C<sv_catpvf_mg>.
4387
4388         void    sv_vcatpvfn(SV* sv, const char* pat, STRLEN patlen, va_list* args, SV** svargs, I32 svmax, bool *maybe_tainted)
4389
4390 =for hackers
4391 Found in file sv.c
4392
4393 =item sv_vsetpvfn
4394
4395 Works like C<vcatpvfn> but copies the text into the SV instead of
4396 appending it.
4397
4398 Usually used via one of its frontends C<sv_setpvf> and C<sv_setpvf_mg>.
4399
4400         void    sv_vsetpvfn(SV* sv, const char* pat, STRLEN patlen, va_list* args, SV** svargs, I32 svmax, bool *maybe_tainted)
4401
4402 =for hackers
4403 Found in file sv.c
4404
4405
4406 =back
4407
4408 =head1 Unicode Support
4409
4410 =over 8
4411
4412 =item bytes_from_utf8
4413
4414 Converts a string C<s> of length C<len> from UTF8 into byte encoding.
4415 Unlike <utf8_to_bytes> but like C<bytes_to_utf8>, returns a pointer to
4416 the newly-created string, and updates C<len> to contain the new
4417 length.  Returns the original string if no conversion occurs, C<len>
4418 is unchanged. Do nothing if C<is_utf8> points to 0. Sets C<is_utf8> to
4419 0 if C<s> is converted or contains all 7bit characters.
4420
4421 NOTE: this function is experimental and may change or be
4422 removed without notice.
4423
4424         U8*     bytes_from_utf8(U8 *s, STRLEN *len, bool *is_utf8)
4425
4426 =for hackers
4427 Found in file utf8.c
4428
4429 =item bytes_to_utf8
4430
4431 Converts a string C<s> of length C<len> from ASCII into UTF8 encoding.
4432 Returns a pointer to the newly-created string, and sets C<len> to
4433 reflect the new length.
4434
4435 NOTE: this function is experimental and may change or be
4436 removed without notice.
4437
4438         U8*     bytes_to_utf8(U8 *s, STRLEN *len)
4439
4440 =for hackers
4441 Found in file utf8.c
4442
4443 =item ibcmp_utf8
4444
4445 Return true if the strings s1 and s2 differ case-insensitively, false
4446 if not (if they are equal case-insensitively).  If u1 is true, the
4447 string s1 is assumed to be in UTF-8-encoded Unicode.  If u2 is true,
4448 the string s2 is assumed to be in UTF-8-encoded Unicode.  If u1 or u2
4449 are false, the respective string is assumed to be in native 8-bit
4450 encoding.
4451
4452 If the pe1 and pe2 are non-NULL, the scanning pointers will be copied
4453 in there (they will point at the beginning of the I<next> character).
4454 If the pointers behind pe1 or pe2 are non-NULL, they are the end
4455 pointers beyond which scanning will not continue under any
4456 circustances.  If the byte lengths l1 and l2 are non-zero, s1+l1 and
4457 s2+l2 will be used as goal end pointers that will also stop the scan,
4458 and which qualify towards defining a successful match: all the scans
4459 that define an explicit length must reach their goal pointers for
4460 a match to succeed).
4461
4462 For case-insensitiveness, the "casefolding" of Unicode is used
4463 instead of upper/lowercasing both the characters, see
4464 http://www.unicode.org/unicode/reports/tr21/ (Case Mappings).
4465
4466         I32     ibcmp_utf8(const char* a, char **pe1, UV l1, bool u1, const char* b, char **pe2, UV l2, bool u2)
4467
4468 =for hackers
4469 Found in file utf8.c
4470
4471 =item is_utf8_char
4472
4473 Tests if some arbitrary number of bytes begins in a valid UTF-8
4474 character.  Note that an INVARIANT (i.e. ASCII) character is a valid UTF-8 character.
4475 The actual number of bytes in the UTF-8 character will be returned if
4476 it is valid, otherwise 0.
4477
4478         STRLEN  is_utf8_char(U8 *p)
4479
4480 =for hackers
4481 Found in file utf8.c
4482
4483 =item is_utf8_string
4484
4485 Returns true if first C<len> bytes of the given string form a valid UTF8
4486 string, false otherwise.  Note that 'a valid UTF8 string' does not mean
4487 'a string that contains UTF8' because a valid ASCII string is a valid
4488 UTF8 string.
4489
4490         bool    is_utf8_string(U8 *s, STRLEN len)
4491
4492 =for hackers
4493 Found in file utf8.c
4494
4495 =item pv_uni_display
4496
4497 Build to the scalar dsv a displayable version of the string spv,
4498 length len, the displayable version being at most pvlim bytes long
4499 (if longer, the rest is truncated and "..." will be appended).
4500
4501 The flags argument can have UNI_DISPLAY_ISPRINT set to display
4502 isPRINT()able characters as themselves, UNI_DISPLAY_BACKSLASH
4503 to display the \\[nrfta\\] as the backslashed versions (like '\n')
4504 (UNI_DISPLAY_BACKSLASH is preferred over UNI_DISPLAY_ISPRINT for \\).
4505 UNI_DISPLAY_QQ (and its alias UNI_DISPLAY_REGEX) have both
4506 UNI_DISPLAY_BACKSLASH and UNI_DISPLAY_ISPRINT turned on.
4507
4508 The pointer to the PV of the dsv is returned.
4509
4510         char*   pv_uni_display(SV *dsv, U8 *spv, STRLEN len, STRLEN pvlim, UV flags)
4511
4512 =for hackers
4513 Found in file utf8.c
4514
4515 =item sv_recode_to_utf8
4516
4517 The encoding is assumed to be an Encode object, on entry the PV
4518 of the sv is assumed to be octets in that encoding, and the sv
4519 will be converted into Unicode (and UTF-8).
4520
4521 If the sv already is UTF-8 (or if it is not POK), or if the encoding
4522 is not a reference, nothing is done to the sv.  If the encoding is not
4523 an C<Encode::XS> Encoding object, bad things will happen.
4524 (See F<lib/encoding.pm> and L<Encode>).
4525
4526 The PV of the sv is returned.
4527
4528         char*   sv_recode_to_utf8(SV* sv, SV *encoding)
4529
4530 =for hackers
4531 Found in file sv.c
4532
4533 =item sv_uni_display
4534
4535 Build to the scalar dsv a displayable version of the scalar sv,
4536 the displayable version being at most pvlim bytes long
4537 (if longer, the rest is truncated and "..." will be appended).
4538
4539 The flags argument is as in pv_uni_display().
4540
4541 The pointer to the PV of the dsv is returned.
4542
4543         char*   sv_uni_display(SV *dsv, SV *ssv, STRLEN pvlim, UV flags)
4544
4545 =for hackers
4546 Found in file utf8.c
4547
4548 =item to_utf8_case
4549
4550 The "p" contains the pointer to the UTF-8 string encoding
4551 the character that is being converted.
4552
4553 The "ustrp" is a pointer to the character buffer to put the
4554 conversion result to.  The "lenp" is a pointer to the length
4555 of the result.
4556
4557 The "swash" is a pointer to the swash to use.
4558
4559 The "normal" is a string like "ToLower" which means the swash
4560 $utf8::ToLower, which is stored in lib/unicore/To/Lower.pl,
4561 and loaded by SWASHGET, using lib/utf8_heavy.pl.
4562
4563 The "special" is a string like "utf8::ToSpecLower", which means
4564 the hash %utf8::ToSpecLower, which is stored in the same file,
4565 lib/unicore/To/Lower.pl, and also loaded by SWASHGET.  The access
4566 to the hash is by Perl_to_utf8_case().
4567
4568         UV      to_utf8_case(U8 *p, U8* ustrp, STRLEN *lenp, SV **swash, char *normal, char *special)
4569
4570 =for hackers
4571 Found in file utf8.c
4572
4573 =item to_utf8_fold
4574
4575 Convert the UTF-8 encoded character at p to its foldcase version and
4576 store that in UTF-8 in ustrp and its length in bytes in lenp.  Note
4577 that the ustrp needs to be at least UTF8_MAXLEN_FOLD+1 bytes since the
4578 foldcase version may be longer than the original character (up to
4579 three characters).
4580
4581 The first character of the foldcased version is returned
4582 (but note, as explained above, that there may be more.)
4583
4584         UV      to_utf8_fold(U8 *p, U8* ustrp, STRLEN *lenp)
4585
4586 =for hackers
4587 Found in file utf8.c
4588
4589 =item to_utf8_lower
4590
4591 Convert the UTF-8 encoded character at p to its lowercase version and
4592 store that in UTF-8 in ustrp and its length in bytes in lenp.  Note
4593 that the ustrp needs to be at least UTF8_MAXLEN_UCLC+1 bytes since the
4594 lowercase version may be longer than the original character (up to two
4595 characters).
4596
4597 The first character of the lowercased version is returned
4598 (but note, as explained above, that there may be more.)
4599
4600         UV      to_utf8_lower(U8 *p, U8* ustrp, STRLEN *lenp)
4601
4602 =for hackers
4603 Found in file utf8.c
4604
4605 =item to_utf8_title
4606
4607 Convert the UTF-8 encoded character at p to its titlecase version and
4608 store that in UTF-8 in ustrp and its length in bytes in lenp.  Note
4609 that the ustrp needs to be at least UTF8_MAXLEN_UCLC+1 bytes since the
4610 titlecase version may be longer than the original character (up to two
4611 characters).
4612
4613 The first character of the titlecased version is returned
4614 (but note, as explained above, that there may be more.)
4615
4616         UV      to_utf8_title(U8 *p, U8* ustrp, STRLEN *lenp)
4617
4618 =for hackers
4619 Found in file utf8.c
4620
4621 =item to_utf8_upper
4622
4623 Convert the UTF-8 encoded character at p to its uppercase version and
4624 store that in UTF-8 in ustrp and its length in bytes in lenp.  Note
4625 that the ustrp needs to be at least UTF8_MAXLEN_UCLC+1 bytes since the
4626 uppercase version may be longer than the original character (up to two
4627 characters).
4628
4629 The first character of the uppercased version is returned
4630 (but note, as explained above, that there may be more.)
4631
4632         UV      to_utf8_upper(U8 *p, U8* ustrp, STRLEN *lenp)
4633
4634 =for hackers
4635 Found in file utf8.c
4636
4637 =item utf8n_to_uvchr
4638
4639 Returns the native character value of the first character in the string C<s>
4640 which is assumed to be in UTF8 encoding; C<retlen> will be set to the
4641 length, in bytes, of that character.
4642
4643 Allows length and flags to be passed to low level routine.
4644
4645         UV      utf8n_to_uvchr(U8 *s, STRLEN curlen, STRLEN* retlen, U32 flags)
4646
4647 =for hackers
4648 Found in file utf8.c
4649
4650 =item utf8n_to_uvuni
4651
4652 Bottom level UTF-8 decode routine.
4653 Returns the unicode code point value of the first character in the string C<s>
4654 which is assumed to be in UTF8 encoding and no longer than C<curlen>;
4655 C<retlen> will be set to the length, in bytes, of that character.
4656
4657 If C<s> does not point to a well-formed UTF8 character, the behaviour
4658 is dependent on the value of C<flags>: if it contains UTF8_CHECK_ONLY,
4659 it is assumed that the caller will raise a warning, and this function
4660 will silently just set C<retlen> to C<-1> and return zero.  If the
4661 C<flags> does not contain UTF8_CHECK_ONLY, warnings about
4662 malformations will be given, C<retlen> will be set to the expected
4663 length of the UTF-8 character in bytes, and zero will be returned.
4664
4665 The C<flags> can also contain various flags to allow deviations from
4666 the strict UTF-8 encoding (see F<utf8.h>).
4667
4668 Most code should use utf8_to_uvchr() rather than call this directly.
4669
4670         UV      utf8n_to_uvuni(U8 *s, STRLEN curlen, STRLEN* retlen, U32 flags)
4671
4672 =for hackers
4673 Found in file utf8.c
4674
4675 =item utf8_distance
4676
4677 Returns the number of UTF8 characters between the UTF-8 pointers C<a>
4678 and C<b>.
4679
4680 WARNING: use only if you *know* that the pointers point inside the
4681 same UTF-8 buffer.
4682
4683         IV      utf8_distance(U8 *a, U8 *b)
4684
4685 =for hackers
4686 Found in file utf8.c
4687
4688 =item utf8_hop
4689
4690 Return the UTF-8 pointer C<s> displaced by C<off> characters, either
4691 forward or backward.
4692
4693 WARNING: do not use the following unless you *know* C<off> is within
4694 the UTF-8 data pointed to by C<s> *and* that on entry C<s> is aligned
4695 on the first byte of character or just after the last byte of a character.
4696
4697         U8*     utf8_hop(U8 *s, I32 off)
4698
4699 =for hackers
4700 Found in file utf8.c
4701
4702 =item utf8_length
4703
4704 Return the length of the UTF-8 char encoded string C<s> in characters.
4705 Stops at C<e> (inclusive).  If C<e E<lt> s> or if the scan would end
4706 up past C<e>, croaks.
4707
4708         STRLEN  utf8_length(U8* s, U8 *e)
4709
4710 =for hackers
4711 Found in file utf8.c
4712
4713 =item utf8_to_bytes
4714
4715 Converts a string C<s> of length C<len> from UTF8 into byte encoding.
4716 Unlike C<bytes_to_utf8>, this over-writes the original string, and
4717 updates len to contain the new length.
4718 Returns zero on failure, setting C<len> to -1.
4719
4720 NOTE: this function is experimental and may change or be
4721 removed without notice.
4722
4723         U8*     utf8_to_bytes(U8 *s, STRLEN *len)
4724
4725 =for hackers
4726 Found in file utf8.c
4727
4728 =item utf8_to_uvchr
4729
4730 Returns the native character value of the first character in the string C<s>
4731 which is assumed to be in UTF8 encoding; C<retlen> will be set to the
4732 length, in bytes, of that character.
4733
4734 If C<s> does not point to a well-formed UTF8 character, zero is
4735 returned and retlen is set, if possible, to -1.
4736
4737         UV      utf8_to_uvchr(U8 *s, STRLEN* retlen)
4738
4739 =for hackers
4740 Found in file utf8.c
4741
4742 =item utf8_to_uvuni
4743
4744 Returns the Unicode code point of the first character in the string C<s>
4745 which is assumed to be in UTF8 encoding; C<retlen> will be set to the
4746 length, in bytes, of that character.
4747
4748 This function should only be used when returned UV is considered
4749 an index into the Unicode semantic tables (e.g. swashes).
4750
4751 If C<s> does not point to a well-formed UTF8 character, zero is
4752 returned and retlen is set, if possible, to -1.
4753
4754         UV      utf8_to_uvuni(U8 *s, STRLEN* retlen)
4755
4756 =for hackers
4757 Found in file utf8.c
4758
4759 =item uvchr_to_utf8
4760
4761 Adds the UTF8 representation of the Native codepoint C<uv> to the end
4762 of the string C<d>; C<d> should be have at least C<UTF8_MAXLEN+1> free
4763 bytes available. The return value is the pointer to the byte after the
4764 end of the new character. In other words,
4765
4766     d = uvchr_to_utf8(d, uv);
4767
4768 is the recommended wide native character-aware way of saying
4769
4770     *(d++) = uv;
4771
4772         U8*     uvchr_to_utf8(U8 *d, UV uv)
4773
4774 =for hackers
4775 Found in file utf8.c
4776
4777 =item uvuni_to_utf8_flags
4778
4779 Adds the UTF8 representation of the Unicode codepoint C<uv> to the end
4780 of the string C<d>; C<d> should be have at least C<UTF8_MAXLEN+1> free
4781 bytes available. The return value is the pointer to the byte after the
4782 end of the new character. In other words,
4783
4784     d = uvuni_to_utf8_flags(d, uv, flags);
4785
4786 or, in most cases,
4787
4788     d = uvuni_to_utf8(d, uv);
4789
4790 (which is equivalent to)
4791
4792     d = uvuni_to_utf8_flags(d, uv, 0);
4793
4794 is the recommended Unicode-aware way of saying
4795
4796     *(d++) = uv;
4797
4798         U8*     uvuni_to_utf8_flags(U8 *d, UV uv, UV flags)
4799
4800 =for hackers
4801 Found in file utf8.c
4802
4803
4804 =back
4805
4806 =head1 Variables created by C<xsubpp> and C<xsubpp> internal functions
4807
4808 =over 8
4809
4810 =item ax
4811
4812 Variable which is setup by C<xsubpp> to indicate the stack base offset,
4813 used by the C<ST>, C<XSprePUSH> and C<XSRETURN> macros.  The C<dMARK> macro
4814 must be called prior to setup the C<MARK> variable.
4815
4816         I32     ax
4817
4818 =for hackers
4819 Found in file XSUB.h
4820
4821 =item CLASS
4822
4823 Variable which is setup by C<xsubpp> to indicate the 
4824 class name for a C++ XS constructor.  This is always a C<char*>.  See C<THIS>.
4825
4826         char*   CLASS
4827
4828 =for hackers
4829 Found in file XSUB.h
4830
4831 =item dAX
4832
4833 Sets up the C<ax> variable.
4834 This is usually handled automatically by C<xsubpp> by calling C<dXSARGS>.
4835
4836                 dAX;
4837
4838 =for hackers
4839 Found in file XSUB.h
4840
4841 =item dITEMS
4842
4843 Sets up the C<items> variable.
4844 This is usually handled automatically by C<xsubpp> by calling C<dXSARGS>.
4845
4846                 dITEMS;
4847
4848 =for hackers
4849 Found in file XSUB.h
4850
4851 =item dXSARGS
4852
4853 Sets up stack and mark pointers for an XSUB, calling dSP and dMARK.
4854 Sets up the C<ax> and C<items> variables by calling C<dAX> and C<dITEMS>.
4855 This is usually handled automatically by C<xsubpp>.
4856
4857                 dXSARGS;
4858
4859 =for hackers
4860 Found in file XSUB.h
4861
4862 =item dXSI32
4863
4864 Sets up the C<ix> variable for an XSUB which has aliases.  This is usually
4865 handled automatically by C<xsubpp>.
4866
4867                 dXSI32;
4868
4869 =for hackers
4870 Found in file XSUB.h
4871
4872 =item items
4873
4874 Variable which is setup by C<xsubpp> to indicate the number of 
4875 items on the stack.  See L<perlxs/"Variable-length Parameter Lists">.
4876
4877         I32     items
4878
4879 =for hackers
4880 Found in file XSUB.h
4881
4882 =item ix
4883
4884 Variable which is setup by C<xsubpp> to indicate which of an 
4885 XSUB's aliases was used to invoke it.  See L<perlxs/"The ALIAS: Keyword">.
4886
4887         I32     ix
4888
4889 =for hackers
4890 Found in file XSUB.h
4891
4892 =item newXSproto
4893
4894 Used by C<xsubpp> to hook up XSUBs as Perl subs.  Adds Perl prototypes to
4895 the subs.
4896
4897 =for hackers
4898 Found in file XSUB.h
4899
4900 =item RETVAL
4901
4902 Variable which is setup by C<xsubpp> to hold the return value for an 
4903 XSUB. This is always the proper type for the XSUB. See 
4904 L<perlxs/"The RETVAL Variable">.
4905
4906         (whatever)      RETVAL
4907
4908 =for hackers
4909 Found in file XSUB.h
4910
4911 =item ST
4912
4913 Used to access elements on the XSUB's stack.
4914
4915         SV*     ST(int ix)
4916
4917 =for hackers
4918 Found in file XSUB.h
4919
4920 =item THIS
4921
4922 Variable which is setup by C<xsubpp> to designate the object in a C++ 
4923 XSUB.  This is always the proper type for the C++ object.  See C<CLASS> and 
4924 L<perlxs/"Using XS With C++">.
4925
4926         (whatever)      THIS
4927
4928 =for hackers
4929 Found in file XSUB.h
4930
4931 =item XS
4932
4933 Macro to declare an XSUB and its C parameter list.  This is handled by
4934 C<xsubpp>.
4935
4936 =for hackers
4937 Found in file XSUB.h
4938
4939 =item XSRETURN_EMPTY
4940
4941 Return an empty list from an XSUB immediately.
4942
4943
4944                 XSRETURN_EMPTY;
4945
4946 =for hackers
4947 Found in file XSUB.h
4948
4949 =item XS_VERSION
4950
4951 The version identifier for an XS module.  This is usually
4952 handled automatically by C<ExtUtils::MakeMaker>.  See C<XS_VERSION_BOOTCHECK>.
4953
4954 =for hackers
4955 Found in file XSUB.h
4956
4957 =item XS_VERSION_BOOTCHECK
4958
4959 Macro to verify that a PM module's $VERSION variable matches the XS
4960 module's C<XS_VERSION> variable.  This is usually handled automatically by
4961 C<xsubpp>.  See L<perlxs/"The VERSIONCHECK: Keyword">.
4962
4963                 XS_VERSION_BOOTCHECK;
4964
4965 =for hackers
4966 Found in file XSUB.h
4967
4968
4969 =back
4970
4971 =head1 Warning and Dieing
4972
4973 =over 8
4974
4975 =item croak
4976
4977 This is the XSUB-writer's interface to Perl's C<die> function.
4978 Normally use this function the same way you use the C C<printf>
4979 function.  See C<warn>.
4980
4981 If you want to throw an exception object, assign the object to
4982 C<$@> and then pass C<Nullch> to croak():
4983
4984    errsv = get_sv("@", TRUE);
4985    sv_setsv(errsv, exception_object);
4986    croak(Nullch);
4987
4988         void    croak(const char* pat, ...)
4989
4990 =for hackers
4991 Found in file util.c
4992
4993 =item warn
4994
4995 This is the XSUB-writer's interface to Perl's C<warn> function.  Use this
4996 function the same way you use the C C<printf> function.  See
4997 C<croak>.
4998
4999         void    warn(const char* pat, ...)
5000
5001 =for hackers
5002 Found in file util.c
5003
5004
5005 =back
5006
5007 =head1 AUTHORS
5008
5009 Until May 1997, this document was maintained by Jeff Okamoto
5010 <okamoto@corp.hp.com>.  It is now maintained as part of Perl itself.
5011
5012 With lots of help and suggestions from Dean Roehrich, Malcolm Beattie,
5013 Andreas Koenig, Paul Hudson, Ilya Zakharevich, Paul Marquess, Neil
5014 Bowers, Matthew Green, Tim Bunce, Spider Boardman, Ulrich Pfeifer,
5015 Stephen McCamant, and Gurusamy Sarathy.
5016
5017 API Listing originally by Dean Roehrich <roehrich@cray.com>.
5018
5019 Updated to be autogenerated from comments in the source by Benjamin Stuhl.
5020
5021 =head1 SEE ALSO
5022
5023 perlguts(1), perlxs(1), perlxstut(1), perlintern(1)
5024