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