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