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