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