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