home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / perlapi.pod < prev    next >
Text File  |  2003-11-07  |  120KB  |  5,285 lines

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