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