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