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