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