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