Commit | Line | Data |
94bdecf9 |
1 | : Lines are of the form: |
2 | : flags|return_type|function_name|arg1|arg2|...|argN |
3 | : |
4 | : A line may be continued on another by ending it with a backslash. |
5 | : Leading and trailing whitespace will be ignored in each component. |
6 | : |
7 | : flags are single letters with following meanings: |
8 | : A member of public API |
db2b0bab |
9 | : m Implemented as a macro - no export, no |
10 | : proto, no #define |
94bdecf9 |
11 | : d function has documentation with its source |
db2b0bab |
12 | : s static function, should have an S_ prefix in |
3c3f4ab8 |
13 | : source file; for macros (m), suffix the usage |
14 | : example with a semicolon |
94bdecf9 |
15 | : n has no implicit interpreter/thread context argument |
16 | : p function has a Perl_ prefix |
17 | : f function takes printf style format string, varargs |
18 | : r function never returns |
921106c8 |
19 | : o has no compatibility macro (#define foo Perl_foo) |
20 | : x not exported |
21 | : X explicitly exported |
22 | : M may change |
1b39b470 |
23 | : E visible to extensions included in the Perl core |
921106c8 |
24 | : b binary backward compatibility; function is a macro |
db2b0bab |
25 | : but has also Perl_ implementation (which is exported) |
3c3f4ab8 |
26 | : U suppress usage example in autogenerated documentation |
b464bac0 |
27 | : a allocates memory a la malloc/calloc. Is also "R". |
28 | : R Return value must not be ignored. |
4373e329 |
29 | : P pure function: no effects except the return value; |
30 | : return value depends only on parms and/or globals |
31 | : |
f54cb97a |
32 | : Pointer parameters that must not be passed NULLs should be prefixed with NN. |
94bdecf9 |
33 | : |
1b6737cc |
34 | : Pointer parameters that may be NULL should be prefixed with NULLOK. This has |
35 | : no effect on output yet. It's a notation for the maintainers to know "I have |
36 | : defined whether NULL is OK or not" rather than having neither NULL or NULLOK, |
37 | : which is ambiguous. |
38 | : |
94bdecf9 |
39 | : Individual flags may be separated by whitespace. |
40 | : |
41 | : New global functions should be added at the end for binary compatibility |
42 | : in some configurations. |
43 | |
44 | START_EXTERN_C |
45 | |
46 | #if defined(PERL_IMPLICIT_SYS) |
47 | Ano |PerlInterpreter* |perl_alloc_using \ |
48 | |struct IPerlMem* m|struct IPerlMem* ms \ |
49 | |struct IPerlMem* mp|struct IPerlEnv* e \ |
50 | |struct IPerlStdIO* io|struct IPerlLIO* lio \ |
51 | |struct IPerlDir* d|struct IPerlSock* s \ |
52 | |struct IPerlProc* p |
53 | #endif |
54 | Anod |PerlInterpreter* |perl_alloc |
4373e329 |
55 | Anod |void |perl_construct |NN PerlInterpreter* interp |
56 | Anod |int |perl_destruct |NN PerlInterpreter* interp |
57 | Anod |void |perl_free |NN PerlInterpreter* interp |
58 | Anod |int |perl_run |NN PerlInterpreter* interp |
94bdecf9 |
59 | Anod |int |perl_parse |PerlInterpreter* interp|XSINIT_t xsinit \ |
60 | |int argc|char** argv|char** env |
a28509cc |
61 | AnpR |bool |doing_taint |int argc|char** argv|char** env |
94bdecf9 |
62 | #if defined(USE_ITHREADS) |
ee956dc2 |
63 | Anod |PerlInterpreter*|perl_clone|PerlInterpreter* interp|UV flags |
94bdecf9 |
64 | # if defined(PERL_IMPLICIT_SYS) |
65 | Ano |PerlInterpreter*|perl_clone_using|PerlInterpreter *interp|UV flags \ |
66 | |struct IPerlMem* m|struct IPerlMem* ms \ |
67 | |struct IPerlMem* mp|struct IPerlEnv* e \ |
68 | |struct IPerlStdIO* io|struct IPerlLIO* lio \ |
69 | |struct IPerlDir* d|struct IPerlSock* s \ |
70 | |struct IPerlProc* p |
71 | # endif |
72 | #endif |
73 | |
4373e329 |
74 | Aanop |Malloc_t|malloc |MEM_SIZE nbytes |
75 | Aanop |Malloc_t|calloc |MEM_SIZE elements|MEM_SIZE size |
76 | Aanop |Malloc_t|realloc |Malloc_t where|MEM_SIZE nbytes |
94bdecf9 |
77 | Anop |Free_t |mfree |Malloc_t where |
78 | #if defined(MYMALLOC) |
b464bac0 |
79 | npR |MEM_SIZE|malloced_size |void *p |
94bdecf9 |
80 | #endif |
81 | |
890ce7af |
82 | AnpR |void* |get_context |
83 | Anp |void |set_context |NN void *thx |
94bdecf9 |
84 | |
85 | END_EXTERN_C |
86 | |
87 | /* functions with flag 'n' should come before here */ |
88 | START_EXTERN_C |
89 | # include "pp_proto.h" |
46c461b5 |
90 | Ap |SV* |amagic_call |NN SV* left|NN SV* right|int method|int dir |
890ce7af |
91 | Ap |bool |Gv_AMupdate |NN HV* stash |
92 | ApR |CV* |gv_handler |NULLOK HV* stash|I32 id |
93 | p |OP* |append_elem |I32 optype|NULLOK OP* first|NULLOK OP* last |
94 | p |OP* |append_list |I32 optype|NULLOK LISTOP* first|NULLOK LISTOP* last |
95 | p |I32 |apply |I32 type|NN SV** mark|NN SV** sp |
96 | ApM |void |apply_attrs_string|NN const char *stashpv|NN CV *cv|NN const char *attrstr|STRLEN len |
97 | Apd |void |av_clear |NULLOK AV* ar |
98 | Apd |SV* |av_delete |NULLOK AV* ar|I32 key|I32 flags |
99 | ApdR |bool |av_exists |NULLOK AV* ar|I32 key |
a3b680e6 |
100 | Apd |void |av_extend |NN AV* ar|I32 key |
101 | pR |AV* |av_fake |I32 size|NN SV** svp |
890ce7af |
102 | ApdR |SV** |av_fetch |NULLOK AV* ar|I32 key|I32 lval |
103 | Apd |void |av_fill |NN AV* ar|I32 fill |
104 | ApdR |I32 |av_len |NN const AV* ar |
a3b680e6 |
105 | ApdR |AV* |av_make |I32 size|NN SV** svp |
890ce7af |
106 | Apd |SV* |av_pop |NULLOK AV* ar |
107 | Apd |void |av_push |NULLOK AV* ar|NN SV* val |
108 | p |void |av_reify |NN AV* ar |
109 | ApdR |SV* |av_shift |NULLOK AV* ar |
aec46f14 |
110 | Apd |SV** |av_store |NULLOK AV* ar|I32 key|NULLOK SV* val |
890ce7af |
111 | Apd |void |av_undef |NULLOK AV* ar |
112 | Apd |void |av_unshift |NULLOK AV* ar|I32 num |
113 | Apo |SV** |av_arylen_p |NN AV* av |
a3b680e6 |
114 | pR |OP* |bind_match |I32 type|NN OP* left|NN OP* pat |
890ce7af |
115 | pR |OP* |block_end |I32 floor|NN OP* seq |
a3b680e6 |
116 | ApR |I32 |block_gimme |
117 | pR |int |block_start |int full |
94bdecf9 |
118 | p |void |boot_core_UNIVERSAL |
119 | p |void |boot_core_PerlIO |
a3b680e6 |
120 | Ap |void |call_list |I32 oldscope|NN AV* av_list |
121 | pR |bool |cando |Mode_t mode|Uid_t effective|NN const Stat_t* statbufp |
53c1dcc0 |
122 | ApR |U32 |cast_ulong |NV f |
123 | ApR |I32 |cast_i32 |NV f |
124 | ApR |IV |cast_iv |NV f |
125 | ApR |UV |cast_uv |NV f |
94bdecf9 |
126 | #if !defined(HAS_TRUNCATE) && !defined(HAS_CHSIZE) && defined(F_FREESP) |
53c1dcc0 |
127 | ApR |I32 |my_chsize |int fd|Off_t length |
94bdecf9 |
128 | #endif |
890ce7af |
129 | pR |OP* |convert |I32 optype|I32 flags|NULLOK OP* o |
3c6f43c5 |
130 | Afprd |void |croak |const char* pat|... |
131 | Apr |void |vcroak |const char* pat|NULLOK va_list* args |
94bdecf9 |
132 | #if defined(PERL_IMPLICIT_CONTEXT) |
3c6f43c5 |
133 | Afnrp |void |croak_nocontext|const char* pat|... |
890ce7af |
134 | Afnp |OP* |die_nocontext |NN const char* pat|... |
135 | Afnp |void |deb_nocontext |NN const char* pat|... |
136 | Afnp |char* |form_nocontext |NN const char* pat|... |
137 | Anp |void |load_module_nocontext|U32 flags|NN SV* name|NN SV* ver|... |
138 | Afnp |SV* |mess_nocontext |NN const char* pat|... |
139 | Afnp |void |warn_nocontext |NN const char* pat|... |
140 | Afnp |void |warner_nocontext|U32 err|NN const char* pat|... |
141 | Afnp |SV* |newSVpvf_nocontext|NN const char* pat|... |
142 | Afnp |void |sv_catpvf_nocontext|NN SV* sv|const char* pat|... |
143 | Afnp |void |sv_setpvf_nocontext|NN SV* sv|const char* pat|... |
144 | Afnp |void |sv_catpvf_mg_nocontext|NN SV* sv|const char* pat|... |
145 | Afnp |void |sv_setpvf_mg_nocontext|NN SV* sv|const char* pat|... |
146 | Afnp |int |fprintf_nocontext|NN PerlIO* stream|NN const char* fmt|... |
147 | Afnp |int |printf_nocontext|NN const char* fmt|... |
94bdecf9 |
148 | #endif |
890ce7af |
149 | p |void |cv_ckproto |NN const CV* cv|NULLOK const GV* gv|NULLOK const char* p |
4373e329 |
150 | pd |CV* |cv_clone |NN CV* proto |
890ce7af |
151 | ApdR |SV* |cv_const_sv |NULLOK CV* cv |
152 | pR |SV* |op_const_sv |NULLOK const OP* o|NULLOK CV* cv |
153 | Apd |void |cv_undef |NN CV* cv |
154 | Ap |void |cx_dump |NN PERL_CONTEXT* cx |
9d4ba2ae |
155 | Ap |SV* |filter_add |NULLOK filter_t funcp|NULLOK SV* datasv |
890ce7af |
156 | Ap |void |filter_del |NN filter_t funcp |
157 | ApR |I32 |filter_read |int idx|NN SV* buffer|int maxlen |
a3b680e6 |
158 | ApPR |char** |get_op_descs |
159 | ApPR |char** |get_op_names |
160 | pPR |const char* |get_no_modify |
161 | pPR |U32* |get_opargs |
162 | ApPR |PPADDR_t*|get_ppaddr |
163 | EpR |I32 |cxinc |
890ce7af |
164 | Afp |void |deb |NN const char* pat|... |
aec46f14 |
165 | Ap |void |vdeb |NN const char* pat|NULLOK va_list* args |
94bdecf9 |
166 | Ap |void |debprofdump |
4373e329 |
167 | Ap |I32 |debop |NN const OP* o |
94bdecf9 |
168 | Ap |I32 |debstack |
169 | Ap |I32 |debstackptrs |
4373e329 |
170 | Ap |char* |delimcpy |NN char* to|NN const char* toend|NN const char* from \ |
171 | |NN const char* fromend|int delim|NN I32* retlen |
172 | p |void |deprecate |NN const char* s |
173 | p |void |deprecate_old |NN const char* s |
c3bdd826 |
174 | Afp |OP* |die |NULLOK const char* pat|... |
890ce7af |
175 | p |OP* |vdie |NULLOK const char* pat|NULLOK va_list* args |
176 | p |OP* |die_where |NN const char* message|STRLEN msglen |
94bdecf9 |
177 | Ap |void |dounwind |I32 cxix |
890ce7af |
178 | p |bool |do_aexec |NULLOK SV* really|NN SV** mark|NN SV** sp |
179 | p |bool |do_aexec5 |NULLOK SV* really|NN SV** mark|NN SV** sp|int fd|int flag |
4373e329 |
180 | Ap |int |do_binmode |NN PerlIO *fp|int iotype|int mode |
181 | p |void |do_chop |NN SV* asv|NN SV* sv |
182 | Ap |bool |do_close |NN GV* gv|bool not_implicit |
183 | p |bool |do_eof |NN GV* gv |
184 | p |bool |do_exec |NN char* cmd |
27da23d5 |
185 | #if defined(WIN32) || defined(SYMBIAN) |
890ce7af |
186 | Ap |int |do_aspawn |NN SV* really|NN SV** mark|NN SV** sp |
187 | Ap |int |do_spawn |NN char* cmd |
188 | Ap |int |do_spawn_nowait|NN char* cmd |
54725af6 |
189 | #endif |
94bdecf9 |
190 | #if !defined(WIN32) |
890ce7af |
191 | p |bool |do_exec3 |NN char* cmd|int fd|int flag |
94bdecf9 |
192 | #endif |
193 | p |void |do_execfree |
194 | #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM) |
195 | p |I32 |do_ipcctl |I32 optype|SV** mark|SV** sp |
196 | p |I32 |do_ipcget |I32 optype|SV** mark|SV** sp |
197 | p |I32 |do_msgrcv |SV** mark|SV** sp |
198 | p |I32 |do_msgsnd |SV** mark|SV** sp |
199 | p |I32 |do_semop |SV** mark|SV** sp |
200 | p |I32 |do_shmio |I32 optype|SV** mark|SV** sp |
201 | #endif |
f54cb97a |
202 | Ap |void |do_join |NN SV* sv|NN SV* del|NN SV** mark|NN SV** sp |
94bdecf9 |
203 | p |OP* |do_kv |
890ce7af |
204 | Ap |bool |do_open |NN GV* gv|NN char* name|I32 len|int as_raw \ |
205 | |int rawmode|int rawperm|NULLOK PerlIO* supplied_fp |
206 | Ap |bool |do_open9 |NN GV *gv|NN char *name|I32 len|int as_raw \ |
207 | |int rawmode|int rawperm|NULLOK PerlIO *supplied_fp \ |
208 | |NN SV *svs|I32 num |
209 | Ap |bool |do_openn |NN GV *gv|NN char *name|I32 len|int as_raw \ |
210 | |int rawmode|int rawperm|NULLOK PerlIO *supplied_fp \ |
211 | |NULLOK SV **svp|I32 num |
212 | p |void |do_pipe |NN SV* sv|NULLOK GV* rgv|NULLOK GV* wgv |
213 | p |bool |do_print |NULLOK SV* sv|NN PerlIO* fp |
214 | pR |OP* |do_readline |
215 | p |I32 |do_chomp |NN SV* sv |
216 | p |bool |do_seek |NULLOK GV* gv|Off_t pos|int whence |
217 | Ap |void |do_sprintf |NN SV* sv|I32 len|NN SV** sarg |
218 | p |Off_t |do_sysseek |NN GV* gv|Off_t pos|int whence |
219 | pR |Off_t |do_tell |NN GV* gv |
220 | p |I32 |do_trans |NN SV* sv |
4373e329 |
221 | p |UV |do_vecget |NN SV* sv|I32 offset|I32 size |
222 | p |void |do_vecset |NN SV* sv |
890ce7af |
223 | p |void |do_vop |I32 optype|NN SV* sv|NN SV* left|NN SV* right |
224 | p |OP* |dofile |NN OP* term |
225 | ApR |I32 |dowantarray |
94bdecf9 |
226 | Ap |void |dump_all |
227 | Ap |void |dump_eval |
228 | #if defined(DUMP_FDS) |
9a957fbc |
229 | Ap |void |dump_fds |NN char* s |
94bdecf9 |
230 | #endif |
9a957fbc |
231 | Ap |void |dump_form |NN const GV* gv |
890ce7af |
232 | Ap |void |gv_dump |NN GV* gv |
233 | Ap |void |op_dump |NN const OP* arg |
9a957fbc |
234 | Ap |void |pmop_dump |NULLOK PMOP* pm |
235 | Ap |void |dump_packsubs |NN const HV* stash |
f54cb97a |
236 | Ap |void |dump_sub |NN const GV* gv |
890ce7af |
237 | Apd |void |fbm_compile |NN SV* sv|U32 flags |
238 | ApdR |char* |fbm_instr |NN unsigned char* big|NN unsigned char* bigend \ |
239 | |NN SV* littlesv|U32 flags |
e1ec3a88 |
240 | p |char* |find_script |const char *scriptname|bool dosearch \ |
241 | |const char **search_ext|I32 flags |
2d03de9c |
242 | p |OP* |force_list |NULLOK OP* arg |
4373e329 |
243 | p |OP* |fold_constants |NN OP* arg |
aec46f14 |
244 | Afpd |char* |form |NN const char* pat|... |
245 | Ap |char* |vform |NN const char* pat|NULLOK va_list* args |
94bdecf9 |
246 | Ap |void |free_tmps |
247 | p |OP* |gen_constant_list|OP* o |
248 | #if !defined(HAS_GETENV_LEN) |
8772537c |
249 | p |char* |getenv_len |NN const char* key|NN unsigned long *len |
94bdecf9 |
250 | #endif |
46c461b5 |
251 | Ap |void |gp_free |NULLOK GV* gv |
252 | Ap |GP* |gp_ref |NULLOK GP* gp |
53c1dcc0 |
253 | Ap |GV* |gv_AVadd |NN GV* gv |
254 | Ap |GV* |gv_HVadd |NN GV* gv |
255 | Ap |GV* |gv_IOadd |NN GV* gv |
46c461b5 |
256 | ApR |GV* |gv_autoload4 |NULLOK HV* stash|NN const char* name|STRLEN len|I32 method |
257 | Ap |void |gv_check |NN HV* stash |
258 | Ap |void |gv_efullname |NN SV* sv|NN const GV* gv |
259 | Apmb |void |gv_efullname3 |NN SV* sv|NN const GV* gv|NULLOK const char* prefix |
260 | Ap |void |gv_efullname4 |NN SV* sv|NN const GV* gv|NULLOK const char* prefix|bool keepmain |
53c1dcc0 |
261 | Ap |GV* |gv_fetchfile |NN const char* name |
94bdecf9 |
262 | Apd |GV* |gv_fetchmeth |HV* stash|const char* name|STRLEN len \ |
263 | |I32 level |
611c1e95 |
264 | Apd |GV* |gv_fetchmeth_autoload |HV* stash|const char* name|STRLEN len \ |
265 | |I32 level |
94bdecf9 |
266 | Apd |GV* |gv_fetchmethod |HV* stash|const char* name |
267 | Apd |GV* |gv_fetchmethod_autoload|HV* stash|const char* name \ |
268 | |I32 autoload |
9a957fbc |
269 | Ap |GV* |gv_fetchpv |NN const char* name|I32 add|I32 sv_type |
270 | Ap |void |gv_fullname |NN SV* sv|NN const GV* gv |
271 | Apmb |void |gv_fullname3 |NN SV* sv|NN const GV* gv|NULLOK const char* prefix |
272 | Ap |void |gv_fullname4 |NN SV* sv|NN const GV* gv|NULLOK const char* prefix|bool keepmain |
1b6737cc |
273 | Ap |void |gv_init |NN GV* gv|HV* stash|NN const char* name|STRLEN len|int multi |
94bdecf9 |
274 | Apd |HV* |gv_stashpv |const char* name|I32 create |
bc96cb06 |
275 | Apd |HV* |gv_stashpvn |const char* name|U32 namelen|I32 create |
94bdecf9 |
276 | Apd |HV* |gv_stashsv |SV* sv|I32 create |
277 | Apd |void |hv_clear |HV* tb |
278 | Ap |void |hv_delayfree_ent|HV* hv|HE* entry |
279 | Apd |SV* |hv_delete |HV* tb|const char* key|I32 klen|I32 flags |
280 | Apd |SV* |hv_delete_ent |HV* tb|SV* key|I32 flags|U32 hash |
901017d6 |
281 | ApdR |bool |hv_exists |HV* tb|const char* key|I32 klen |
282 | ApdR |bool |hv_exists_ent |HV* tb|SV* key|U32 hash |
94bdecf9 |
283 | Apd |SV** |hv_fetch |HV* tb|const char* key|I32 klen|I32 lval |
284 | Apd |HE* |hv_fetch_ent |HV* tb|SV* key|I32 lval|U32 hash |
aec46f14 |
285 | Ap |void |hv_free_ent |NN HV* hv|NULLOK HE* entry |
a3b680e6 |
286 | Apd |I32 |hv_iterinit |NN HV* tb |
287 | ApdR |char* |hv_iterkey |NN HE* entry|NN I32* retlen |
288 | ApdR |SV* |hv_iterkeysv |NN HE* entry |
289 | ApdR |HE* |hv_iternext |NN HV* tb |
290 | ApdR |SV* |hv_iternextsv |NN HV* hv|NN char** key|NN I32* retlen |
291 | ApMdR |HE* |hv_iternext_flags|NN HV* tb|I32 flags |
292 | ApdR |SV* |hv_iterval |NN HV* tb|NN HE* entry |
293 | Ap |void |hv_ksplit |NN HV* hv|IV newmax |
94bdecf9 |
294 | Apd |void |hv_magic |HV* hv|GV* gv|int how |
295 | Apd |SV** |hv_store |HV* tb|const char* key|I32 klen|SV* val \ |
296 | |U32 hash |
297 | Apd |HE* |hv_store_ent |HV* tb|SV* key|SV* val|U32 hash |
e16e2ff8 |
298 | ApM |SV** |hv_store_flags |HV* tb|const char* key|I32 klen|SV* val \ |
299 | |U32 hash|int flags |
2d03de9c |
300 | Apd |void |hv_undef |NULLOK HV* tb |
4373e329 |
301 | ApP |I32 |ibcmp |NN const char* a|NN const char* b|I32 len |
302 | ApP |I32 |ibcmp_locale |NN const char* a|NN const char* b|I32 len |
303 | Apd |I32 |ibcmp_utf8 |NN const char* a|char **pe1|UV l1|bool u1|NN const char* b|char **pe2|UV l2|bool u2 |
f54cb97a |
304 | pR |bool |ingroup |Gid_t testgid|Uid_t effective |
4373e329 |
305 | p |void |init_argv_symbols|int argc|NN char **argv |
94bdecf9 |
306 | p |void |init_debugger |
307 | Ap |void |init_stacks |
308 | Ap |void |init_tm |struct tm *ptm |
dd2155a4 |
309 | pd |U32 |intro_my |
b464bac0 |
310 | ApPR |char* |instr |NN const char* big|NN const char* little |
311 | pR |bool |io_close |NN IO* io|bool not_implicit |
2d03de9c |
312 | pR |OP* |invert |NULLOK OP* cmd |
9d4ba2ae |
313 | dpR |bool |is_gv_magical |NN const char *name|STRLEN len|U32 flags |
f54cb97a |
314 | ApR |I32 |is_lvalue_sub |
315 | ApPR |U32 |to_uni_upper_lc|U32 c |
316 | ApPR |U32 |to_uni_title_lc|U32 c |
317 | ApPR |U32 |to_uni_lower_lc|U32 c |
318 | ApPR |bool |is_uni_alnum |UV c |
319 | ApPR |bool |is_uni_alnumc |UV c |
320 | ApPR |bool |is_uni_idfirst |UV c |
321 | ApPR |bool |is_uni_alpha |UV c |
322 | ApPR |bool |is_uni_ascii |UV c |
323 | ApPR |bool |is_uni_space |UV c |
324 | ApPR |bool |is_uni_cntrl |UV c |
325 | ApPR |bool |is_uni_graph |UV c |
326 | ApPR |bool |is_uni_digit |UV c |
327 | ApPR |bool |is_uni_upper |UV c |
328 | ApPR |bool |is_uni_lower |UV c |
329 | ApPR |bool |is_uni_print |UV c |
330 | ApPR |bool |is_uni_punct |UV c |
331 | ApPR |bool |is_uni_xdigit |UV c |
4373e329 |
332 | Ap |UV |to_uni_upper |UV c|NN U8 *p|NN STRLEN *lenp |
333 | Ap |UV |to_uni_title |UV c|NN U8 *p|NN STRLEN *lenp |
334 | Ap |UV |to_uni_lower |UV c|NN U8 *p|NN STRLEN *lenp |
335 | Ap |UV |to_uni_fold |UV c|NN U8 *p|NN STRLEN *lenp |
f54cb97a |
336 | ApPR |bool |is_uni_alnum_lc|UV c |
337 | ApPR |bool |is_uni_alnumc_lc|UV c |
338 | ApPR |bool |is_uni_idfirst_lc|UV c |
339 | ApPR |bool |is_uni_alpha_lc|UV c |
340 | ApPR |bool |is_uni_ascii_lc|UV c |
341 | ApPR |bool |is_uni_space_lc|UV c |
342 | ApPR |bool |is_uni_cntrl_lc|UV c |
343 | ApPR |bool |is_uni_graph_lc|UV c |
344 | ApPR |bool |is_uni_digit_lc|UV c |
345 | ApPR |bool |is_uni_upper_lc|UV c |
346 | ApPR |bool |is_uni_lower_lc|UV c |
347 | ApPR |bool |is_uni_print_lc|UV c |
348 | ApPR |bool |is_uni_punct_lc|UV c |
349 | ApPR |bool |is_uni_xdigit_lc|UV c |
4373e329 |
350 | Apd |STRLEN |is_utf8_char |NN const U8 *p |
351 | Apd |bool |is_utf8_string |NN const U8 *s|STRLEN len |
768c67ee |
352 | Apd |bool |is_utf8_string_loc|NN const U8 *s|STRLEN len|const U8 **p |
353 | Apd |bool |is_utf8_string_loclen|NN const U8 *s|STRLEN len|const U8 **ep|STRLEN *el |
1df70142 |
354 | ApR |bool |is_utf8_alnum |NN const U8 *p |
355 | ApR |bool |is_utf8_alnumc |NN const U8 *p |
356 | ApR |bool |is_utf8_idfirst|NN const U8 *p |
357 | ApR |bool |is_utf8_idcont |NN const U8 *p |
358 | ApR |bool |is_utf8_alpha |NN const U8 *p |
359 | ApR |bool |is_utf8_ascii |NN const U8 *p |
360 | ApR |bool |is_utf8_space |NN const U8 *p |
361 | ApR |bool |is_utf8_cntrl |NN const U8 *p |
362 | ApR |bool |is_utf8_digit |NN const U8 *p |
363 | ApR |bool |is_utf8_graph |NN const U8 *p |
364 | ApR |bool |is_utf8_upper |NN const U8 *p |
365 | ApR |bool |is_utf8_lower |NN const U8 *p |
366 | ApR |bool |is_utf8_print |NN const U8 *p |
367 | ApR |bool |is_utf8_punct |NN const U8 *p |
368 | ApR |bool |is_utf8_xdigit |NN const U8 *p |
369 | ApR |bool |is_utf8_mark |NN const U8 *p |
4373e329 |
370 | p |OP* |jmaybe |NN OP* arg |
f54cb97a |
371 | pP |I32 |keyword |NN const char* d|I32 len |
94bdecf9 |
372 | Ap |void |leave_scope |I32 base |
373 | p |void |lex_end |
374 | p |void |lex_start |SV* line |
aec46f14 |
375 | Ap |void |op_null |NN OP* o |
376 | p |void |op_clear |NN OP* o |
4026c95a |
377 | Ap |void |op_refcnt_lock |
378 | Ap |void |op_refcnt_unlock |
aec46f14 |
379 | p |OP* |linklist |NN OP* o |
380 | p |OP* |list |NULLOK OP* o |
381 | p |OP* |listkids |NULLOK OP* o |
382 | Apd |void |load_module|U32 flags|NN SV* name|NULLOK SV* ver|... |
383 | Ap |void |vload_module|U32 flags|NN SV* name|NULLOK SV* ver|NULLOK va_list* args |
94bdecf9 |
384 | p |OP* |localize |OP* arg|I32 lexical |
f54cb97a |
385 | ApdR |I32 |looks_like_number|NN SV* sv |
a3b680e6 |
386 | Apd |UV |grok_bin |NN const char* start|NN STRLEN* len_p|NN I32* flags|NV *result |
387 | Apd |UV |grok_hex |NN const char* start|NN STRLEN* len_p|NN I32* flags|NV *result |
f54cb97a |
388 | Apd |int |grok_number |NN const char *pv|STRLEN len|UV *valuep |
901017d6 |
389 | ApdR |bool |grok_numeric_radix|const char **sp|const char *send |
a3b680e6 |
390 | Apd |UV |grok_oct |const char* start|STRLEN* len_p|I32* flags|NV *result |
94bdecf9 |
391 | p |int |magic_clearenv |SV* sv|MAGIC* mg |
392 | p |int |magic_clear_all_env|SV* sv|MAGIC* mg |
393 | p |int |magic_clearpack|SV* sv|MAGIC* mg |
394 | p |int |magic_clearsig |SV* sv|MAGIC* mg |
395 | p |int |magic_existspack|SV* sv|MAGIC* mg |
396 | p |int |magic_freeregexp|SV* sv|MAGIC* mg |
397 | p |int |magic_freeovrld|SV* sv|MAGIC* mg |
398 | p |int |magic_get |SV* sv|MAGIC* mg |
8772537c |
399 | p |int |magic_getarylen|NN SV* sv|NN const MAGIC* mg |
94bdecf9 |
400 | p |int |magic_getdefelem|SV* sv|MAGIC* mg |
401 | p |int |magic_getglob |SV* sv|MAGIC* mg |
402 | p |int |magic_getnkeys |SV* sv|MAGIC* mg |
403 | p |int |magic_getpack |SV* sv|MAGIC* mg |
404 | p |int |magic_getpos |SV* sv|MAGIC* mg |
405 | p |int |magic_getsig |SV* sv|MAGIC* mg |
406 | p |int |magic_getsubstr|SV* sv|MAGIC* mg |
407 | p |int |magic_gettaint |SV* sv|MAGIC* mg |
408 | p |int |magic_getuvar |SV* sv|MAGIC* mg |
409 | p |int |magic_getvec |SV* sv|MAGIC* mg |
410 | p |U32 |magic_len |SV* sv|MAGIC* mg |
94bdecf9 |
411 | p |int |magic_nextpack |SV* sv|MAGIC* mg|SV* key |
412 | p |U32 |magic_regdata_cnt|SV* sv|MAGIC* mg |
413 | p |int |magic_regdatum_get|SV* sv|MAGIC* mg |
73d840c0 |
414 | pr |int |magic_regdatum_set|SV* sv|MAGIC* mg |
94bdecf9 |
415 | p |int |magic_set |SV* sv|MAGIC* mg |
416 | p |int |magic_setamagic|SV* sv|MAGIC* mg |
417 | p |int |magic_setarylen|SV* sv|MAGIC* mg |
83bf042f |
418 | p |int |magic_freearylen_p|SV* sv|MAGIC* mg |
94bdecf9 |
419 | p |int |magic_setbm |SV* sv|MAGIC* mg |
420 | p |int |magic_setdbline|SV* sv|MAGIC* mg |
94bdecf9 |
421 | p |int |magic_setdefelem|SV* sv|MAGIC* mg |
422 | p |int |magic_setenv |SV* sv|MAGIC* mg |
423 | p |int |magic_setfm |SV* sv|MAGIC* mg |
424 | p |int |magic_setisa |SV* sv|MAGIC* mg |
425 | p |int |magic_setglob |SV* sv|MAGIC* mg |
426 | p |int |magic_setmglob |SV* sv|MAGIC* mg |
427 | p |int |magic_setnkeys |SV* sv|MAGIC* mg |
428 | p |int |magic_setpack |SV* sv|MAGIC* mg |
429 | p |int |magic_setpos |SV* sv|MAGIC* mg |
faf82a0b |
430 | p |int |magic_setregexp|SV* sv|MAGIC* mg |
94bdecf9 |
431 | p |int |magic_setsig |SV* sv|MAGIC* mg |
432 | p |int |magic_setsubstr|SV* sv|MAGIC* mg |
433 | p |int |magic_settaint |SV* sv|MAGIC* mg |
434 | p |int |magic_setuvar |SV* sv|MAGIC* mg |
435 | p |int |magic_setvec |SV* sv|MAGIC* mg |
7e8c5dac |
436 | p |int |magic_setutf8 |SV* sv|MAGIC* mg |
94bdecf9 |
437 | p |int |magic_set_all_env|SV* sv|MAGIC* mg |
438 | p |U32 |magic_sizepack |SV* sv|MAGIC* mg |
439 | p |int |magic_wipepack |SV* sv|MAGIC* mg |
e1ec3a88 |
440 | p |void |magicname |const char* sym|const char* name|I32 namlen |
94bdecf9 |
441 | Ap |void |markstack_grow |
442 | #if defined(USE_LOCALE_COLLATE) |
504618e9 |
443 | p |int |magic_setcollxfrm|SV* sv|MAGIC* mg |
94bdecf9 |
444 | p |char* |mem_collxfrm |const char* s|STRLEN len|STRLEN* xlen |
445 | #endif |
aec46f14 |
446 | Afp |SV* |mess |NN const char* pat|... |
447 | Ap |SV* |vmess |NN const char* pat|NULLOK va_list* args |
94bdecf9 |
448 | p |void |qerror |SV* err |
449 | Apd |void |sortsv |SV ** array|size_t num_elts|SVCOMPARE_t cmp |
9a957fbc |
450 | Apd |int |mg_clear |NN SV* sv |
451 | Apd |int |mg_copy |NN SV* sv|NN SV* nsv|const char* key|I32 klen |
452 | pd |void |mg_localize |NN SV* sv|NN SV* nsv |
890ce7af |
453 | ApdR |MAGIC* |mg_find |NULLOK const SV* sv|int type |
9a957fbc |
454 | Apd |int |mg_free |NN SV* sv |
455 | Apd |int |mg_get |NN SV* sv |
456 | Apd |U32 |mg_length |NN SV* sv |
457 | Apd |void |mg_magical |NN SV* sv |
458 | Apd |int |mg_set |NN SV* sv |
459 | Ap |I32 |mg_size |NN SV* sv |
460 | Ap |void |mini_mktime |NN struct tm *pm |
461 | p |OP* |mod |NULLOK OP* o|I32 type |
94bdecf9 |
462 | p |int |mode_from_discipline|SV* discp |
463 | Ap |char* |moreswitches |char* s |
4373e329 |
464 | p |OP* |my |NN OP* o |
465 | Ap |NV |my_atof |NN const char *s |
94bdecf9 |
466 | #if (!defined(HAS_MEMCPY) && !defined(HAS_BCOPY)) || (!defined(HAS_MEMMOVE) && !defined(HAS_SAFE_MEMCPY) && !defined(HAS_SAFE_BCOPY)) |
4373e329 |
467 | Anp |char* |my_bcopy |NN const char* from|NN char* to|I32 len |
94bdecf9 |
468 | #endif |
469 | #if !defined(HAS_BZERO) && !defined(HAS_MEMSET) |
4373e329 |
470 | Anp |char* |my_bzero |NN char* loc|I32 len |
94bdecf9 |
471 | #endif |
472 | Apr |void |my_exit |U32 status |
473 | Apr |void |my_failure_exit |
474 | Ap |I32 |my_fflush_all |
475 | Anp |Pid_t |my_fork |
476 | Anp |void |atfork_lock |
477 | Anp |void |atfork_unlock |
478 | Ap |I32 |my_lstat |
479 | #if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP) |
4373e329 |
480 | AnpP |I32 |my_memcmp |NN const char* s1|NN const char* s2|I32 len |
94bdecf9 |
481 | #endif |
482 | #if !defined(HAS_MEMSET) |
4373e329 |
483 | Anp |void* |my_memset |NN char* loc|I32 ch|I32 len |
94bdecf9 |
484 | #endif |
485 | Ap |I32 |my_pclose |PerlIO* ptr |
486 | Ap |PerlIO*|my_popen |char* cmd|char* mode |
487 | Ap |PerlIO*|my_popen_list |char* mode|int n|SV ** args |
e1ec3a88 |
488 | Ap |void |my_setenv |const char* nam|const char* val |
94bdecf9 |
489 | Ap |I32 |my_stat |
e1ec3a88 |
490 | Ap |char * |my_strftime |const char *fmt|int sec|int min|int hour|int mday|int mon|int year|int wday|int yday|int isdst |
94bdecf9 |
491 | #if defined(MYSWAP) |
f54cb97a |
492 | ApPa |short |my_swap |short s |
493 | ApPa |long |my_htonl |long l |
494 | ApPa |long |my_ntohl |long l |
94bdecf9 |
495 | #endif |
496 | p |void |my_unexec |
f54cb97a |
497 | Apa |OP* |newANONLIST |OP* o |
498 | Apa |OP* |newANONHASH |OP* o |
94bdecf9 |
499 | Ap |OP* |newANONSUB |I32 floor|OP* proto|OP* block |
aec46f14 |
500 | Apa |OP* |newASSIGNOP |I32 flags|NULLOK OP* left|I32 optype|NULLOK OP* right |
501 | Apa |OP* |newCONDOP |I32 flags|NN OP* first|NULLOK OP* trueop|NULLOK OP* falseop |
9a957fbc |
502 | Apd |CV* |newCONSTSUB |NULLOK HV* stash|NULLOK const char* name|NULLOK SV* sv |
aec46f14 |
503 | Ap |void |newFORM |I32 floor|NULLOK OP* o|NULLOK OP* block |
f54cb97a |
504 | Apa |OP* |newFOROP |I32 flags|char* label|line_t forline \ |
2d03de9c |
505 | |NULLOK OP* sv|OP* expr|OP*block|OP*cont |
f54cb97a |
506 | Apa |OP* |newLOGOP |I32 optype|I32 flags|OP* left|OP* right |
507 | Apa |OP* |newLOOPEX |I32 type|OP* label |
508 | Apa |OP* |newLOOPOP |I32 flags|I32 debuggable|OP* expr|OP* block |
4373e329 |
509 | Apa |OP* |newNULLLIST |
f54cb97a |
510 | Apa |OP* |newOP |I32 optype|I32 flags |
511 | Ap |void |newPROG |NN OP* o |
512 | Apa |OP* |newRANGE |I32 flags|OP* left|OP* right |
2d03de9c |
513 | Apa |OP* |newSLICEOP |I32 flags|NULLOK OP* subscript|NULLOK OP* listop |
514 | Apa |OP* |newSTATEOP |I32 flags|NULLOK char* label|NULLOK OP* o |
94bdecf9 |
515 | Ap |CV* |newSUB |I32 floor|OP* o|OP* proto|OP* block |
9a957fbc |
516 | Apd |CV* |newXS |NN const char* name|NN XSUBADDR_t f|NN const char* filename |
f54cb97a |
517 | Apda |AV* |newAV |
518 | Apa |OP* |newAVREF |NN OP* o |
519 | Apa |OP* |newBINOP |I32 type|I32 flags|OP* first|OP* last |
2d03de9c |
520 | Apa |OP* |newCVREF |I32 flags|NULLOK OP* o |
521 | Apa |OP* |newGVOP |I32 type|I32 flags|NN GV* gv |
f54cb97a |
522 | Apa |GV* |newGVgen |const char* pack |
523 | Apa |OP* |newGVREF |I32 type|OP* o |
a3b680e6 |
524 | ApaR |OP* |newHVREF |NN OP* o |
525 | ApdaR |HV* |newHV |
526 | ApaR |HV* |newHVhv |HV* hv |
f54cb97a |
527 | Apa |IO* |newIO |
528 | Apa |OP* |newLISTOP |I32 type|I32 flags|OP* first|OP* last |
529 | Apa |OP* |newPADOP |I32 type|I32 flags|SV* sv |
530 | Apa |OP* |newPMOP |I32 type|I32 flags |
531 | Apa |OP* |newPVOP |I32 type|I32 flags|char* pv |
66a1b24b |
532 | Apa |SV* |newRV |NN SV* pref |
f54cb97a |
533 | Apda |SV* |newRV_noinc |NN SV *sv |
534 | Apda |SV* |newSV |STRLEN len |
535 | Apa |OP* |newSVREF |NN OP* o |
536 | Apa |OP* |newSVOP |I32 type|I32 flags|NN SV* sv |
537 | Apda |SV* |newSViv |IV i |
538 | Apda |SV* |newSVuv |UV u |
539 | Apda |SV* |newSVnv |NV n |
540 | Apda |SV* |newSVpv |const char* s|STRLEN len |
541 | Apda |SV* |newSVpvn |const char* s|STRLEN len |
c1b02ed8 |
542 | Apda |SV* |newSVhek |const HEK *hek |
2d03de9c |
543 | Apda |SV* |newSVpvn_share |NULLOK const char* s|I32 len|U32 hash |
aec46f14 |
544 | Afpda |SV* |newSVpvf |NN const char* pat|... |
545 | Apa |SV* |vnewSVpvf |NN const char* pat|NULLOK va_list* args |
1b6737cc |
546 | Apda |SV* |newSVrv |NN SV* rv|NULLOK const char* classname |
547 | Apda |SV* |newSVsv |NULLOK SV* old |
2d03de9c |
548 | Apa |OP* |newUNOP |I32 type|I32 flags|NULLOK OP* first |
549 | Apa |OP* |newWHILEOP |I32 flags|I32 debuggable|NULLOK LOOP* loop \ |
550 | |I32 whileline|NULLOK OP* expr|NULLOK OP* block|NULLOK OP* cont \ |
a034e688 |
551 | |I32 has_my |
f54cb97a |
552 | Apa |PERL_SI*|new_stackinfo|I32 stitems|I32 cxitems |
4373e329 |
553 | Ap |char* |scan_vstring |NN const char *vstr|NN SV *sv |
9137345a |
554 | Apd |const char* |scan_version |NN const char *vstr|NN SV *sv|bool qv |
2d03de9c |
555 | Apd |SV* |new_version |NN SV *ver |
556 | Apd |SV* |upg_version |NN SV *ver |
557 | Apd |SV* |vnumify |NN SV *vs |
558 | Apd |SV* |vnormal |NN SV *vs |
559 | Apd |SV* |vstringify |NN SV *vs |
4373e329 |
560 | Apd |int |vcmp |NN SV *lvs|NN SV *rvs |
2d03de9c |
561 | p |PerlIO*|nextargv |NN GV* gv |
562 | ApP |char* |ninstr |NN const char* big|NN const char* bigend \ |
563 | |NN const char* little|NN const char* lend |
564 | pr |OP* |oopsCV |NN OP* o |
565 | Ap |void |op_free |NN OP* arg |
566 | p |void |package |NN OP* o |
dd2155a4 |
567 | pd |PADOFFSET|pad_alloc |I32 optype|U32 tmptype |
4373e329 |
568 | p |PADOFFSET|allocmy |NN char* name |
890ce7af |
569 | pdR |PADOFFSET|pad_findmy |NN const char* name |
e1f795dc |
570 | Ap |PADOFFSET|find_rundefsvoffset | |
1df70142 |
571 | pR |OP* |oopsAV |NN OP* o |
572 | pR |OP* |oopsHV |NN OP* o |
dd2155a4 |
573 | pd |void |pad_leavemy |
574 | Apd |SV* |pad_sv |PADOFFSET po |
575 | pd |void |pad_free |PADOFFSET po |
576 | pd |void |pad_reset |
577 | pd |void |pad_swipe |PADOFFSET po|bool refadjust |
2d03de9c |
578 | p |void |peep |NULLOK OP* o |
579 | dopM |PerlIO*|start_glob |NN SV* pattern|NN IO *io |
59bd0823 |
580 | #if defined(USE_REENTRANT_API) |
10bc17b6 |
581 | Ap |void |reentrant_size |
59bd0823 |
582 | Ap |void |reentrant_init |
10bc17b6 |
583 | Ap |void |reentrant_free |
c803eecc |
584 | Anp |void* |reentrant_retry|const char*|... |
59bd0823 |
585 | #endif |
94bdecf9 |
586 | Ap |void |call_atexit |ATEXIT_t fn|void *ptr |
4373e329 |
587 | Apd |I32 |call_argv |NN const char* sub_name|I32 flags|NN char** argv |
588 | Apd |I32 |call_method |NN const char* methname|I32 flags |
589 | Apd |I32 |call_pv |NN const char* sub_name|I32 flags |
aec46f14 |
590 | Apd |I32 |call_sv |NN SV* sv|I32 flags |
5290524f |
591 | Ap |void |despatch_signals |
4373e329 |
592 | Apd |SV* |eval_pv |NN const char* p|I32 croak_on_error |
593 | Apd |I32 |eval_sv |NN SV* sv|I32 flags |
56d23705 |
594 | Apd |SV* |get_sv |NN const char* name|I32 create |
595 | Apd |AV* |get_av |NN const char* name|I32 create |
596 | Apd |HV* |get_hv |NN const char* name|I32 create |
597 | Apd |CV* |get_cv |NN const char* name|I32 create |
94bdecf9 |
598 | Ap |int |init_i18nl10n |int printwarn |
599 | Ap |int |init_i18nl14n |int printwarn |
8772537c |
600 | Ap |void |new_collate |NULLOK const char* newcoll |
601 | Ap |void |new_ctype |NN const char* newctype |
602 | Ap |void |new_numeric |NULLOK const char* newcoll |
94bdecf9 |
603 | Ap |void |set_numeric_local |
604 | Ap |void |set_numeric_radix |
605 | Ap |void |set_numeric_standard |
4373e329 |
606 | Apd |void |require_pv |NN const char* pv |
2d03de9c |
607 | Apd |void |pack_cat |NN SV *cat|NN const char *pat|NN const char *patend \ |
608 | |NN SV **beglist|NN SV **endlist|NN SV ***next_in_list|U32 flags |
609 | Apd |void |packlist |NN SV *cat|NN const char *pat|NN const char *patend|NN SV **beglist|NN SV **endlist |
94bdecf9 |
610 | p |void |pidgone |Pid_t pid|int status |
4373e329 |
611 | Ap |void |pmflag |NN U32* pmfl|int ch |
612 | p |OP* |pmruntime |NN OP* pm|NN OP* expr|bool isreg |
2d03de9c |
613 | p |OP* |pmtrans |NN OP* o|NN OP* expr|NN OP* repl |
94bdecf9 |
614 | Ap |void |pop_scope |
2d03de9c |
615 | p |OP* |prepend_elem |I32 optype|NULLOK OP* head|NULLOK OP* tail |
94bdecf9 |
616 | Ap |void |push_scope |
9a957fbc |
617 | p |OP* |ref |NULLOK OP* o|I32 type |
618 | p |OP* |refkids |NULLOK OP* o|I32 type |
4373e329 |
619 | Ap |void |regdump |NN regexp* r |
2d03de9c |
620 | Ap |SV* |regclass_swash |NN const struct regnode *n|bool doinit|NULLOK SV **listsvp|NULLOK SV **altsvp |
4373e329 |
621 | Ap |I32 |pregexec |NN regexp* prog|NN char* stringarg \ |
622 | |NN char* strend|NN char* strbeg|I32 minend \ |
623 | |NN SV* screamer|U32 nosave |
9a957fbc |
624 | Ap |void |pregfree |NULLOK struct regexp* r |
4373e329 |
625 | Ap |regexp*|pregcomp |NN char* exp|NN char* xend|NN PMOP* pm |
2d03de9c |
626 | Ap |char* |re_intuit_start|NN regexp* prog|NULLOK SV* sv|NN char* strpos \ |
627 | |NN char* strend|U32 flags \ |
628 | |NULLOK struct re_scream_pos_data_s *data |
629 | Ap |SV* |re_intuit_string|NN regexp* prog |
a3b680e6 |
630 | Ap |I32 |regexec_flags |NN regexp* prog|NN char* stringarg \ |
631 | |NN char* strend|NN char* strbeg|I32 minend \ |
94bdecf9 |
632 | |SV* screamer|void* data|U32 flags |
1df70142 |
633 | ApR |regnode*|regnext |NN regnode* p |
2d03de9c |
634 | Ep |void |regprop |NN SV* sv|NN const regnode* o |
4373e329 |
635 | Ap |void |repeatcpy |NN char* to|NN const char* from|I32 len|I32 count |
a3b680e6 |
636 | ApP |char* |rninstr |NN const char* big|NN const char* bigend \ |
637 | |NN const char* little|NN const char* lend |
94bdecf9 |
638 | Ap |Sighandler_t|rsignal |int i|Sighandler_t t |
639 | p |int |rsignal_restore|int i|Sigsave_t* t |
9a957fbc |
640 | p |int |rsignal_save |int i|Sighandler_t t1|NN Sigsave_t* t2 |
94bdecf9 |
641 | Ap |Sighandler_t|rsignal_state|int i |
a3b680e6 |
642 | p |void |rxres_free |NN void** rsp |
643 | p |void |rxres_restore |NN void** rsp|NN REGEXP* prx |
644 | p |void |rxres_save |NN void** rsp|NN REGEXP* prx |
94bdecf9 |
645 | #if !defined(HAS_RENAME) |
4373e329 |
646 | p |I32 |same_dirent |NN const char* a|NN const char* b |
94bdecf9 |
647 | #endif |
53c1dcc0 |
648 | Apda |char* |savepv |NN const char* pv |
649 | Apda |char* |savepvn |NN const char* pv|I32 len |
650 | Apda |char* |savesharedpv |const char* pv |
651 | Apda |char* |savesvpv |NN SV* sv |
94bdecf9 |
652 | Ap |void |savestack_grow |
4b3c1a47 |
653 | Ap |void |savestack_grow_cnt |I32 need |
9a957fbc |
654 | Ap |void |save_aelem |NN const AV* av|I32 idx|NN SV **sptr |
94bdecf9 |
655 | Ap |I32 |save_alloc |I32 size|I32 pad |
9a957fbc |
656 | Ap |void |save_aptr |NN AV** aptr |
657 | Ap |AV* |save_ary |NN GV* gv |
658 | Ap |void |save_bool |NN bool* boolp |
659 | Ap |void |save_clearsv |NN SV** svp |
660 | Ap |void |save_delete |NN HV* hv|NN char* key|I32 klen |
94bdecf9 |
661 | Ap |void |save_destructor|DESTRUCTORFUNC_NOCONTEXT_t f|void* p |
662 | Ap |void |save_destructor_x|DESTRUCTORFUNC_t f|void* p |
663 | Ap |void |save_freesv |SV* sv |
664 | p |void |save_freeop |OP* o |
665 | Ap |void |save_freepv |char* pv |
9a957fbc |
666 | Ap |void |save_generic_svref|NN SV** sptr |
667 | Ap |void |save_generic_pvref|NN char** str |
668 | Ap |void |save_shared_pvref|NN char** str |
aec46f14 |
669 | Ap |void |save_gp |NN GV* gv|I32 empty |
670 | Ap |HV* |save_hash |NN GV* gv |
9a957fbc |
671 | Ap |void |save_helem |NN HV* hv|NN SV *key|NN SV **sptr |
73d840c0 |
672 | Apr |void |save_hints |
aec46f14 |
673 | Ap |void |save_hptr |NN HV** hptr |
674 | Ap |void |save_I16 |NN I16* intp |
675 | Ap |void |save_I32 |NN I32* intp |
676 | Ap |void |save_I8 |NN I8* bytep |
677 | Ap |void |save_int |NN int* intp |
678 | Ap |void |save_item |NN SV* item |
679 | Ap |void |save_iv |NN IV* iv |
680 | Ap |void |save_list |NN SV** sarg|I32 maxsarg |
681 | Ap |void |save_long |NN long* longp |
682 | Ap |void |save_mortalizesv|NN SV* sv |
683 | Ap |void |save_nogv |NULLOK GV* gv |
94bdecf9 |
684 | p |void |save_op |
aec46f14 |
685 | Ap |SV* |save_scalar |NN GV* gv |
686 | Ap |void |save_pptr |NN char** pptr |
687 | Ap |void |save_vptr |NN void* pptr |
94bdecf9 |
688 | Ap |void |save_re_context |
689 | Ap |void |save_padsv |PADOFFSET off |
aec46f14 |
690 | Ap |void |save_sptr |NN SV** sptr |
691 | Ap |SV* |save_svref |NN SV** sptr |
73d840c0 |
692 | Apr |SV** |save_threadsv |PADOFFSET i |
aec46f14 |
693 | p |OP* |sawparens |NULLOK OP* o |
694 | p |OP* |scalar |NULLOK OP* o |
695 | p |OP* |scalarkids |NULLOK OP* o |
696 | p |OP* |scalarseq |NULLOK OP* o |
697 | p |OP* |scalarvoid |NN OP* o |
698 | Apd |NV |scan_bin |NN const char* start|STRLEN len|NN STRLEN* retlen |
699 | Apd |NV |scan_hex |NN const char* start|STRLEN len|NN STRLEN* retlen |
700 | Ap |char* |scan_num |NN const char* s|NN YYSTYPE *lvalp |
701 | Apd |NV |scan_oct |NN const char* start|STRLEN len|NN STRLEN* retlen |
702 | p |OP* |scope |NULLOK OP* o |
703 | Ap |char* |screaminstr |NN SV *bigstr|NN SV *littlestr|I32 start_shift \ |
704 | |I32 end_shift|NN I32 *oldposp|I32 last |
94bdecf9 |
705 | #if !defined(VMS) |
e1ec3a88 |
706 | p |I32 |setenv_getix |const char* nam |
94bdecf9 |
707 | #endif |
aec46f14 |
708 | p |void |setdefout |NULLOK GV* gv |
709 | Ap |HEK* |share_hek |NN const char* str|I32 len|U32 hash |
8aad04aa |
710 | #if defined(HAS_SIGACTION) && defined(SA_SIGINFO) |
711 | np |Signal_t |sighandler |int sig|... |
712 | Anp |Signal_t |csighandler |int sig|... |
713 | #else |
94bdecf9 |
714 | np |Signal_t |sighandler |int sig |
669f9482 |
715 | Anp |Signal_t |csighandler |int sig |
8aad04aa |
716 | #endif |
4373e329 |
717 | Ap |SV** |stack_grow |NN SV** sp|NN SV**p|int n |
a3b680e6 |
718 | ApR |I32 |start_subparse |I32 is_format|U32 flags |
aec46f14 |
719 | p |void |sub_crush_depth|NN CV* cv |
4373e329 |
720 | Apd |bool |sv_2bool |NN SV* sv |
aec46f14 |
721 | Apd |CV* |sv_2cv |NULLOK SV* sv|NN HV** st|NN GV** gvp|I32 lref |
f54cb97a |
722 | Apd |IO* |sv_2io |NN SV* sv |
723 | Amb |IV |sv_2iv |NN SV* sv |
724 | Apd |IV |sv_2iv_flags |NN SV* sv|I32 flags |
725 | Apd |SV* |sv_2mortal |NN SV* sv |
726 | Apd |NV |sv_2nv |NN SV* sv |
aec46f14 |
727 | Amb |char* |sv_2pv |NN SV* sv|NULLOK STRLEN* lp |
728 | Apd |char* |sv_2pv_flags |NN SV* sv|NULLOK STRLEN* lp|I32 flags |
729 | Apd |char* |sv_2pvutf8 |NN SV* sv|NULLOK STRLEN* lp |
730 | Apd |char* |sv_2pvbyte |NN SV* sv|NULLOK STRLEN* lp |
731 | Ap |char* |sv_pvn_nomg |NN SV* sv|NULLOK STRLEN* lp |
4373e329 |
732 | Amb |UV |sv_2uv |NN SV* sv |
733 | Apd |UV |sv_2uv_flags |NN SV* sv|I32 flags |
734 | Apd |IV |sv_iv |NN SV* sv |
735 | Apd |UV |sv_uv |NN SV* sv |
736 | Apd |NV |sv_nv |NN SV* sv |
737 | Apd |char* |sv_pvn |NN SV *sv|NN STRLEN *len |
738 | Apd |char* |sv_pvutf8n |NN SV *sv|NN STRLEN *len |
739 | Apd |char* |sv_pvbyten |NN SV *sv|NN STRLEN *len |
aec46f14 |
740 | Apd |I32 |sv_true |NULLOK SV *sv |
f54cb97a |
741 | pd |void |sv_add_arena |NN char* ptr|U32 size|U32 flags |
742 | Apd |int |sv_backoff |NN SV* sv |
743 | Apd |SV* |sv_bless |NN SV* sv|NN HV* stash |
aec46f14 |
744 | Afpd |void |sv_catpvf |NN SV* sv|NN const char* pat|... |
745 | Apd |void |sv_vcatpvf |NN SV* sv|NN const char* pat|NULLOK va_list* args |
746 | Apd |void |sv_catpv |NN SV* sv|NN const char* ptr |
747 | Amdb |void |sv_catpvn |NN SV* sv|NN const char* ptr|STRLEN len |
748 | Amdb |void |sv_catsv |NN SV* dsv|NULLOK SV* ssv |
46c461b5 |
749 | Apd |void |sv_chop |NN SV* sv|NULLOK const char* ptr |
94bdecf9 |
750 | pd |I32 |sv_clean_all |
751 | pd |void |sv_clean_objs |
f54cb97a |
752 | Apd |void |sv_clear |NN SV* sv |
753 | Apd |I32 |sv_cmp |NN SV* sv1|NN SV* sv2 |
754 | Apd |I32 |sv_cmp_locale |NN SV* sv1|NN SV* sv2 |
94bdecf9 |
755 | #if defined(USE_LOCALE_COLLATE) |
1df70142 |
756 | Apd |char* |sv_collxfrm |NN SV* sv|NN STRLEN* nxp |
94bdecf9 |
757 | #endif |
4373e329 |
758 | Ap |OP* |sv_compile_2op |NN SV* sv|NN OP** startp|NN const char* code|NN PAD** padp |
759 | Apd |int |getcwd_sv |NN SV* sv |
f54cb97a |
760 | Apd |void |sv_dec |NN SV* sv |
761 | Ap |void |sv_dump |NN SV* sv |
a3b680e6 |
762 | ApdR |bool |sv_derived_from|NN SV* sv|NN const char* name |
4373e329 |
763 | Apd |I32 |sv_eq |NN SV* sv1|NN SV* sv2 |
aec46f14 |
764 | Apd |void |sv_free |NULLOK SV* sv |
4373e329 |
765 | poMX |void |sv_free2 |NN SV* sv |
94bdecf9 |
766 | pd |void |sv_free_arenas |
4373e329 |
767 | Apd |char* |sv_gets |NN SV* sv|NN PerlIO* fp|I32 append |
768 | Apd |char* |sv_grow |NN SV* sv|STRLEN newlen |
f54cb97a |
769 | Apd |void |sv_inc |NN SV* sv |
4373e329 |
770 | Apd |void |sv_insert |NN SV* bigsv|STRLEN offset|STRLEN len \ |
771 | |NN const char* little|STRLEN littlelen |
aec46f14 |
772 | Apd |int |sv_isa |NULLOK SV* sv|NN const char* name |
773 | Apd |int |sv_isobject |NULLOK SV* sv |
9d4ba2ae |
774 | Apd |STRLEN |sv_len |NULLOK SV* sv |
775 | Apd |STRLEN |sv_len_utf8 |NULLOK SV* sv |
2d03de9c |
776 | Apd |void |sv_magic |NN SV* sv|NULLOK SV* obj|int how|NULLOK const char* name \ |
94bdecf9 |
777 | |I32 namlen |
aec46f14 |
778 | Apd |MAGIC *|sv_magicext |NN SV* sv|NULLOK SV* obj|int how|const MGVTBL *vtbl \ |
2d03de9c |
779 | |NULLOK const char* name|I32 namlen |
1b6737cc |
780 | ApdaR |SV* |sv_mortalcopy |NULLOK SV* oldsv |
f54cb97a |
781 | ApdR |SV* |sv_newmortal |
1b6737cc |
782 | Apd |SV* |sv_newref |NULLOK SV* sv |
aec46f14 |
783 | Ap |char* |sv_peek |NULLOK SV* sv |
9d4ba2ae |
784 | Apd |void |sv_pos_u2b |NULLOK SV* sv|NN I32* offsetp|NULLOK I32* lenp |
785 | Apd |void |sv_pos_b2u |NULLOK SV* sv|NN I32* offsetp |
aec46f14 |
786 | Amdb |char* |sv_pvn_force |NN SV* sv|NULLOK STRLEN* lp |
787 | Apd |char* |sv_pvutf8n_force|NN SV* sv|NULLOK STRLEN* lp |
788 | Apd |char* |sv_pvbyten_force|NN SV* sv|NULLOK STRLEN* lp |
789 | Apd |char* |sv_recode_to_utf8 |NN SV* sv|NN SV *encoding |
790 | Apd |bool |sv_cat_decode |NN SV* dsv|NN SV *encoding|NN SV *ssv|NN int *offset \ |
791 | |NN char* tstr|int tlen |
a3b680e6 |
792 | ApdR |char* |sv_reftype |NN const SV* sv|int ob |
793 | Apd |void |sv_replace |NN SV* sv|NN SV* nsv |
94bdecf9 |
794 | Apd |void |sv_report_used |
aec46f14 |
795 | Apd |void |sv_reset |NN const char* s|NULLOK HV* stash |
796 | Afpd |void |sv_setpvf |NN SV* sv|NN const char* pat|... |
797 | Apd |void |sv_vsetpvf |NN SV* sv|NN const char* pat|NULLOK va_list* args |
798 | Apd |void |sv_setiv |NN SV* sv|IV num |
504618e9 |
799 | Apdb |void |sv_setpviv |NN SV* sv|IV num |
aec46f14 |
800 | Apd |void |sv_setuv |NN SV* sv|UV num |
801 | Apd |void |sv_setnv |NN SV* sv|NV num |
802 | Apd |SV* |sv_setref_iv |NN SV* rv|NULLOK const char* classname|IV iv |
803 | Apd |SV* |sv_setref_uv |NN SV* rv|NULLOK const char* classname|UV uv |
804 | Apd |SV* |sv_setref_nv |NN SV* rv|NULLOK const char* classname|NV nv |
805 | Apd |SV* |sv_setref_pv |NN SV* rv|NULLOK const char* classname|NULLOK void* pv |
806 | Apd |SV* |sv_setref_pvn |NN SV* rv|NULLOK const char* classname|NN const char* pv|STRLEN n |
807 | Apd |void |sv_setpv |NN SV* sv|NULLOK const char* ptr |
808 | Apd |void |sv_setpvn |NN SV* sv|NULLOK const char* ptr|STRLEN len |
809 | Amdb |void |sv_setsv |NN SV* dsv|NULLOK SV* ssv |
810 | Apd |void |sv_taint |NN SV* sv |
811 | ApdR |bool |sv_tainted |NN SV* sv |
f54cb97a |
812 | Apd |int |sv_unmagic |NN SV* sv|int type |
813 | Apd |void |sv_unref |NN SV* sv |
814 | Apd |void |sv_unref_flags |NN SV* sv|U32 flags |
815 | Apd |void |sv_untaint |NN SV* sv |
63f97190 |
816 | Apd |void |sv_upgrade |NN SV* sv|U32 mt |
aec46f14 |
817 | Apd |void |sv_usepvn |NN SV* sv|NULLOK char* ptr|STRLEN len |
f54cb97a |
818 | Apd |void |sv_vcatpvfn |NN SV* sv|NN const char* pat|STRLEN patlen \ |
2d03de9c |
819 | |NULLOK va_list* args|NULLOK SV** svargs|I32 svmax \ |
aec46f14 |
820 | |NULLOK bool *maybe_tainted |
f54cb97a |
821 | Apd |void |sv_vsetpvfn |NN SV* sv|NN const char* pat|STRLEN patlen \ |
2d03de9c |
822 | |NULLOK va_list* args|NULLOK SV** svargs|I32 svmax \ |
aec46f14 |
823 | |NULLOK bool *maybe_tainted |
824 | ApR |NV |str_to_version |NN SV *sv |
825 | Ap |SV* |swash_init |NN const char* pkg|NN const char* name|NN SV* listsv|I32 minbits|I32 none |
826 | Ap |UV |swash_fetch |NN SV *sv|NN const U8 *ptr|bool do_utf8 |
94bdecf9 |
827 | Ap |void |taint_env |
8772537c |
828 | Ap |void |taint_proper |NULLOK const char* f|NN const char* s |
9a957fbc |
829 | Apd |UV |to_utf8_case |NN const U8 *p|NN U8* ustrp|NULLOK STRLEN *lenp \ |
830 | |NN SV **swashp|const char *normal|const char *special |
831 | Apd |UV |to_utf8_lower |NN const U8 *p|NN U8* ustrp|NULLOK STRLEN *lenp |
832 | Apd |UV |to_utf8_upper |NN const U8 *p|NN U8* ustrp|NULLOK STRLEN *lenp |
833 | Apd |UV |to_utf8_title |NN const U8 *p|NN U8* ustrp|NULLOK STRLEN *lenp |
834 | Apd |UV |to_utf8_fold |NN const U8 *p|NN U8* ustrp|NULLOK STRLEN *lenp |
94bdecf9 |
835 | #if defined(UNLINK_ALL_VERSIONS) |
6e732051 |
836 | Ap |I32 |unlnk |NN const char* f |
94bdecf9 |
837 | #endif |
aec46f14 |
838 | Apd |I32 |unpack_str |NN const char *pat|NN const char *patend|NN const char *s \ |
839 | |NULLOK const char *strbeg|NN const char *strend|NULLOK char **new_s \ |
840 | |I32 ocnt|U32 flags |
841 | Apd |I32 |unpackstring |NN const char *pat|NN const char *patend|NN const char *s \ |
842 | |NN const char *strend|U32 flags |
843 | Ap |void |unsharepvn |NULLOK const char* sv|I32 len|U32 hash |
844 | p |void |unshare_hek |NULLOK HEK* hek |
845 | p |void |utilize |int aver|I32 floor|NULLOK OP* version|NN OP* idop|NULLOK OP* arg |
846 | Ap |U8* |utf16_to_utf8 |NN U8* p|NN U8 *d|I32 bytelen|NN I32 *newlen |
847 | Ap |U8* |utf16_to_utf8_reversed|NN U8* p|NN U8 *d|I32 bytelen|NN I32 *newlen |
a3b680e6 |
848 | AdpPR |STRLEN |utf8_length |NN const U8* s|NN const U8 *e |
849 | ApdPR |IV |utf8_distance |NN const U8 *a|NN const U8 *b |
850 | ApdPR |U8* |utf8_hop |NN const U8 *s|I32 off |
4373e329 |
851 | ApMd |U8* |utf8_to_bytes |NN U8 *s|NN STRLEN *len |
aec46f14 |
852 | ApMd |U8* |bytes_from_utf8|NN const U8 *s|NN STRLEN *len|NULLOK bool *is_utf8 |
853 | ApMd |U8* |bytes_to_utf8 |NN const U8 *s|NN STRLEN *len |
854 | Apd |UV |utf8_to_uvchr |NN const U8 *s|NULLOK STRLEN *retlen |
855 | Apd |UV |utf8_to_uvuni |NN const U8 *s|NULLOK STRLEN *retlen |
856 | Adp |UV |utf8n_to_uvchr |NN const U8 *s|STRLEN curlen|NULLOK STRLEN *retlen|U32 flags |
857 | Adp |UV |utf8n_to_uvuni |NN const U8 *s|STRLEN curlen|NULLOK STRLEN *retlen|U32 flags |
4373e329 |
858 | Apd |U8* |uvchr_to_utf8 |NN U8 *d|UV uv |
859 | Ap |U8* |uvuni_to_utf8 |NN U8 *d|UV uv |
860 | Ap |U8* |uvchr_to_utf8_flags |NN U8 *d|UV uv|UV flags |
861 | Apd |U8* |uvuni_to_utf8_flags |NN U8 *d|UV uv|UV flags |
e1ec3a88 |
862 | Apd |char* |pv_uni_display |SV *dsv|const U8 *spv|STRLEN len \ |
94bdecf9 |
863 | |STRLEN pvlim|UV flags |
a3b680e6 |
864 | ApdR |char* |sv_uni_display |SV *dsv|SV *ssv|STRLEN pvlim|UV flags |
aec46f14 |
865 | p |void |vivify_defelem |NN SV* sv |
866 | p |void |vivify_ref |NN SV* sv|U32 to_what |
867 | p |I32 |wait4pid |Pid_t pid|NN int* statusp|int flags |
e1ec3a88 |
868 | p |U32 |parse_unicode_opts|const char **popt |
132efe8b |
869 | p |U32 |seed |
890ce7af |
870 | pR |UV |get_hash_seed |
aec46f14 |
871 | p |void |report_evil_fh |NULLOK const GV *gv|NULLOK const IO *io|I32 op |
872 | pd |void |report_uninit |NULLOK SV* uninit_sv |
873 | Afpd |void |warn |NN const char* pat|... |
874 | Ap |void |vwarn |NN const char* pat|NULLOK va_list* args |
875 | Afp |void |warner |U32 err|NN const char* pat|... |
876 | Ap |void |vwarner |U32 err|NN const char* pat|NULLOK va_list* args |
877 | p |void |watch |NN char** addr |
878 | Ap |I32 |whichsig |NN const char* sig |
879 | p |void |write_to_stderr|NN const char* message|int msglen |
880 | p |int |yyerror |NN const char* s |
94bdecf9 |
881 | p |int |yylex |
882 | p |int |yyparse |
aec46f14 |
883 | p |int |yywarn |NN const char* s |
94bdecf9 |
884 | #if defined(MYMALLOC) |
aec46f14 |
885 | Ap |void |dump_mstats |NN char* s |
890ce7af |
886 | ApR |int |get_mstats |NN perl_mstats_t *buf|int buflen|int level |
94bdecf9 |
887 | #endif |
4373e329 |
888 | Anpa |Malloc_t|safesysmalloc |MEM_SIZE nbytes |
889 | Anpa |Malloc_t|safesyscalloc |MEM_SIZE elements|MEM_SIZE size |
890 | Anpa |Malloc_t|safesysrealloc|Malloc_t where|MEM_SIZE nbytes |
94bdecf9 |
891 | Anp |Free_t |safesysfree |Malloc_t where |
94bdecf9 |
892 | #if defined(PERL_GLOBAL_STRUCT) |
893 | Ap |struct perl_vars *|GetVars |
77304e85 |
894 | Ap |struct perl_vars*|init_global_struct |
895 | Ap |void |free_global_struct|struct perl_vars* |
94bdecf9 |
896 | #endif |
897 | Ap |int |runops_standard |
898 | Ap |int |runops_debug |
aec46f14 |
899 | Afpd |void |sv_catpvf_mg |NN SV *sv|NN const char* pat|... |
2d03de9c |
900 | Apd |void |sv_vcatpvf_mg |NN SV* sv|NN const char* pat|NULLOK va_list* args |
aec46f14 |
901 | Apd |void |sv_catpv_mg |NN SV *sv|NN const char *ptr |
902 | Apd |void |sv_catpvn_mg |NN SV *sv|NN const char *ptr|STRLEN len |
903 | Apd |void |sv_catsv_mg |NN SV *dstr|NULLOK SV *sstr |
904 | Afpd |void |sv_setpvf_mg |NN SV *sv|NN const char* pat|... |
905 | Apd |void |sv_vsetpvf_mg |NN SV* sv|NN const char* pat|va_list* args |
906 | Apd |void |sv_setiv_mg |NN SV *sv|IV i |
504618e9 |
907 | Apdb |void |sv_setpviv_mg |NN SV *sv|IV iv |
aec46f14 |
908 | Apd |void |sv_setuv_mg |NN SV *sv|UV u |
909 | Apd |void |sv_setnv_mg |NN SV *sv|NV num |
910 | Apd |void |sv_setpv_mg |NN SV *sv|NULLOK const char *ptr |
911 | Apd |void |sv_setpvn_mg |NN SV *sv|NN const char *ptr|STRLEN len |
912 | Apd |void |sv_setsv_mg |NN SV *dstr|NULLOK SV *sstr |
913 | Apd |void |sv_usepvn_mg |NN SV *sv|NULLOK char *ptr|STRLEN len |
914 | ApR |MGVTBL*|get_vtbl |int vtbl_id |
915 | Ap |char* |pv_display |NN SV *dsv|NN const char *pv|STRLEN cur|STRLEN len \ |
94bdecf9 |
916 | |STRLEN pvlim |
aec46f14 |
917 | Afp |void |dump_indent |I32 level|NN PerlIO *file|NN const char* pat|... |
918 | Ap |void |dump_vindent |I32 level|NN PerlIO *file|NN const char* pat \ |
919 | |NULLOK va_list *args |
920 | Ap |void |do_gv_dump |I32 level|NN PerlIO *file|NN const char *name|NN GV *sv |
921 | Ap |void |do_gvgv_dump |I32 level|NN PerlIO *file|NN const char *name|NN GV *sv |
922 | Ap |void |do_hv_dump |I32 level|NN PerlIO *file|NN const char *name|NN HV *sv |
923 | Ap |void |do_magic_dump |I32 level|NN PerlIO *file|NN const MAGIC *mg|I32 nest \ |
94bdecf9 |
924 | |I32 maxnest|bool dumpops|STRLEN pvlim |
aec46f14 |
925 | Ap |void |do_op_dump |I32 level|NN PerlIO *file|NULLOK const OP *o |
926 | Ap |void |do_pmop_dump |I32 level|NN PerlIO *file|NULLOK const PMOP *pm |
1b6737cc |
927 | Ap |void |do_sv_dump |I32 level|NN PerlIO *file|NULLOK SV *sv|I32 nest \ |
94bdecf9 |
928 | |I32 maxnest|bool dumpops|STRLEN pvlim |
1b6737cc |
929 | Ap |void |magic_dump |NULLOK const MAGIC *mg |
94bdecf9 |
930 | Ap |void |reginitcolors |
aec46f14 |
931 | ApdR |char* |sv_2pv_nolen |NN SV* sv |
932 | ApdR |char* |sv_2pvutf8_nolen|NN SV* sv |
933 | ApdR |char* |sv_2pvbyte_nolen|NN SV* sv |
b64e5050 |
934 | AmdbR |char* |sv_pv |NN SV *sv |
935 | AmdbR |char* |sv_pvutf8 |NN SV *sv |
936 | AmdbR |char* |sv_pvbyte |NN SV *sv |
937 | Amdb |STRLEN |sv_utf8_upgrade|NN SV *sv |
938 | ApdM |bool |sv_utf8_downgrade|NN SV *sv|bool fail_ok |
939 | Apd |void |sv_utf8_encode |NN SV *sv |
940 | ApdM |bool |sv_utf8_decode |NN SV *sv |
941 | Apd |void |sv_force_normal|NN SV *sv |
942 | Apd |void |sv_force_normal_flags|NN SV *sv|U32 flags |
94bdecf9 |
943 | Ap |void |tmps_grow |I32 n |
b64e5050 |
944 | Apd |SV* |sv_rvweaken |NN SV *sv |
945 | p |int |magic_killbackrefs|NN SV *sv|NN MAGIC *mg |
46c461b5 |
946 | Ap |OP* |newANONATTRSUB |I32 floor|NULLOK OP *proto|NULLOK OP *attrs|NULLOK OP *block |
aec46f14 |
947 | Ap |CV* |newATTRSUB |I32 floor|NULLOK OP *o|NULLOK OP *proto|NULLOK OP *attrs|NULLOK OP *block |
46c461b5 |
948 | Apr |void |newMYSUB |I32 floor|NULLOK OP *o|NULLOK OP *proto|NULLOK OP *attrs|NULLOK OP *block |
949 | p |OP * |my_attrs |NN OP *o|NULLOK OP *attrs |
94bdecf9 |
950 | p |void |boot_core_xsutils |
951 | #if defined(USE_ITHREADS) |
aec46f14 |
952 | Apa |PERL_CONTEXT*|cx_dup |NULLOK PERL_CONTEXT* cx|I32 ix|I32 max|NN CLONE_PARAMS* param |
953 | Apa |PERL_SI*|si_dup |NULLOK PERL_SI* si|NN CLONE_PARAMS* param |
954 | Apa |ANY* |ss_dup |NN PerlInterpreter* proto_perl|NN CLONE_PARAMS* param |
955 | Apa |void* |any_dup |NULLOK void* v|NN const PerlInterpreter* proto_perl |
956 | Apa |HE* |he_dup |NULLOK HE* e|bool shared|NN CLONE_PARAMS* param |
957 | Apa |HEK* |hek_dup |NULLOK HEK* e|NN CLONE_PARAMS* param |
958 | Apa |REGEXP*|re_dup |NULLOK const REGEXP* r|NN CLONE_PARAMS* param |
959 | Apa |PerlIO*|fp_dup |NULLOK PerlIO* fp|char type|NN CLONE_PARAMS* param |
960 | Apa |DIR* |dirp_dup |NULLOK DIR* dp |
961 | Apa |GP* |gp_dup |NULLOK GP* gp|NN CLONE_PARAMS* param |
962 | Apa |MAGIC* |mg_dup |NULLOK MAGIC* mg|NN CLONE_PARAMS* param |
963 | Apa |SV* |sv_dup |NULLOK SV* sstr|NN CLONE_PARAMS* param |
964 | Ap |void |rvpv_dup |NN SV* dstr|NN SV *sstr|NN CLONE_PARAMS* param |
53c1dcc0 |
965 | Apa |PTR_TBL_t*|ptr_table_new |
966 | Apa |void* |ptr_table_fetch|NN PTR_TBL_t *tbl|NN const void *sv |
967 | Ap |void |ptr_table_store|NN PTR_TBL_t *tbl|const void *oldsv|NN void *newsv |
4373e329 |
968 | Ap |void |ptr_table_split|NN PTR_TBL_t *tbl |
aec46f14 |
969 | Ap |void |ptr_table_clear|NULLOK PTR_TBL_t *tbl |
970 | Ap |void |ptr_table_free|NULLOK PTR_TBL_t *tbl |
504618e9 |
971 | # if defined(HAVE_INTERP_INTERN) |
972 | Ap |void |sys_intern_dup |NN struct interp_intern* src|NN struct interp_intern* dst |
ddacffcf |
973 | # endif |
974 | #endif |
975 | #if defined(HAVE_INTERP_INTERN) |
94bdecf9 |
976 | Ap |void |sys_intern_clear |
977 | Ap |void |sys_intern_init |
978 | #endif |
979 | |
53c1dcc0 |
980 | ApR |char * |custom_op_name |NN const OP* op |
981 | ApR |char * |custom_op_desc |NN const OP* op |
94bdecf9 |
982 | |
f8c7b90f |
983 | #if defined(PERL_OLD_COPY_ON_WRITE) |
aec46f14 |
984 | pMX |int |sv_release_IVX |NN SV *sv |
765f542d |
985 | #endif |
986 | |
aec46f14 |
987 | Adp |void |sv_nosharing |NULLOK SV * |
988 | Adp |void |sv_nolocking |NULLOK SV * |
989 | Adp |void |sv_nounlocking |NULLOK SV * |
62375a60 |
990 | Adp |int |nothreadhook |
94bdecf9 |
991 | |
992 | END_EXTERN_C |
993 | |
94bdecf9 |
994 | #if defined(PERL_IN_DOOP_C) || defined(PERL_DECL_PROT) |
53c1dcc0 |
995 | sR |I32 |do_trans_simple |NN SV *sv |
996 | sR |I32 |do_trans_count |NN SV *sv |
997 | sR |I32 |do_trans_complex |NN SV *sv |
998 | sR |I32 |do_trans_simple_utf8 |NN SV *sv |
999 | sR |I32 |do_trans_count_utf8 |NN SV *sv |
1000 | sR |I32 |do_trans_complex_utf8 |NN SV *sv |
94bdecf9 |
1001 | #endif |
1002 | |
1003 | #if defined(PERL_IN_GV_C) || defined(PERL_DECL_PROT) |
53c1dcc0 |
1004 | s |void |gv_init_sv |NN GV *gv|I32 sv_type |
a3b680e6 |
1005 | s |void |require_errno |NN GV *gv |
94bdecf9 |
1006 | #endif |
1007 | |
1008 | #if defined(PERL_IN_HV_C) || defined(PERL_DECL_PROT) |
53c1dcc0 |
1009 | s |void |hsplit |NN HV *hv |
3abe233e |
1010 | s |void |hfreeentries |NN HV *hv |
53c1dcc0 |
1011 | sa |HE* |new_he |
53c1dcc0 |
1012 | sa |HEK* |save_hek_flags |NN const char *str|I32 len|U32 hash|int flags |
1df70142 |
1013 | s |void |hv_magic_check |NN HV *hv|NN bool *needs_copy|NN bool *needs_store |
1b6737cc |
1014 | s |void |unshare_hek_or_pvn|NULLOK const HEK* hek|NULLOK const char* str|I32 len|U32 hash |
1015 | sR |HEK* |share_hek_flags|NN const char* sv|I32 len|U32 hash|int flags |
1df70142 |
1016 | rs |void |hv_notallowed |int flags|NN const char *key|I32 klen|NN const char *msg |
53c1dcc0 |
1017 | s |struct xpvhv_aux*|hv_auxinit|NN HV *hv |
aec46f14 |
1018 | sM |SV* |hv_delete_common|NULLOK HV* tb|NULLOK SV* keysv|NULLOK const char* key \ |
1019 | |STRLEN klen|int k_flags|I32 d_flags|U32 hash |
1020 | sM |HE* |hv_fetch_common|NULLOK HV* tb|NULLOK SV* keysv|NULLOK const char* key \ |
1021 | |STRLEN klen|int flags|int action|NULLOK SV* val|U32 hash |
94bdecf9 |
1022 | #endif |
1023 | |
1024 | #if defined(PERL_IN_MG_C) || defined(PERL_DECL_PROT) |
504618e9 |
1025 | s |void |save_magic |I32 mgs_ix|NN SV *sv |
1026 | s |int |magic_methpack |NN SV *sv|NN const MAGIC *mg|NN const char *meth |
1027 | s |int |magic_methcall |NN SV *sv|NN const MAGIC *mg|NN const char *meth|I32 f \ |
aec46f14 |
1028 | |int n|NULLOK SV *val |
8772537c |
1029 | s |void |restore_magic |NN const void *p |
1030 | s |void |unwind_handler_stack|NN const void *p |
1031 | |
94bdecf9 |
1032 | #endif |
1033 | |
1034 | #if defined(PERL_IN_OP_C) || defined(PERL_DECL_PROT) |
1cf743e1 |
1035 | pR |OP* |ck_anoncode |NN OP *o |
1036 | pR |OP* |ck_bitop |NN OP *o |
1037 | pR |OP* |ck_concat |NN OP *o |
1038 | pR |OP* |ck_defined |NN OP *o |
1039 | pR |OP* |ck_delete |NN OP *o |
1040 | pR |OP* |ck_die |NN OP *o |
1041 | pR |OP* |ck_eof |NN OP *o |
1042 | pR |OP* |ck_eval |NN OP *o |
1043 | pR |OP* |ck_exec |NN OP *o |
1044 | pR |OP* |ck_exists |NN OP *o |
1045 | pR |OP* |ck_exit |NN OP *o |
1046 | pR |OP* |ck_ftst |NN OP *o |
1047 | pR |OP* |ck_fun |NN OP *o |
1048 | pR |OP* |ck_glob |NN OP *o |
1049 | pR |OP* |ck_grep |NN OP *o |
1050 | pR |OP* |ck_index |NN OP *o |
1051 | pR |OP* |ck_join |NN OP *o |
1052 | pR |OP* |ck_lengthconst |NN OP *o |
1053 | pR |OP* |ck_lfun |NN OP *o |
1054 | pR |OP* |ck_listiob |NN OP *o |
1055 | pR |OP* |ck_match |NN OP *o |
1056 | pR |OP* |ck_method |NN OP *o |
1057 | pR |OP* |ck_null |NN OP *o |
1058 | pR |OP* |ck_open |NN OP *o |
1059 | pR |OP* |ck_repeat |NN OP *o |
1060 | pR |OP* |ck_require |NN OP *o |
1061 | pR |OP* |ck_retarget |NN OP *o |
1062 | pR |OP* |ck_return |NN OP *o |
1063 | pR |OP* |ck_rfun |NN OP *o |
1064 | pR |OP* |ck_rvconst |NN OP *o |
1065 | pR |OP* |ck_sassign |NN OP *o |
1066 | pR |OP* |ck_select |NN OP *o |
1067 | pR |OP* |ck_shift |NN OP *o |
1068 | pR |OP* |ck_sort |NN OP *o |
1069 | pR |OP* |ck_spair |NN OP *o |
1070 | pR |OP* |ck_split |NN OP *o |
1071 | pR |OP* |ck_subr |NN OP *o |
1072 | pR |OP* |ck_substr |NN OP *o |
1073 | pR |OP* |ck_svconst |NN OP *o |
1074 | pR |OP* |ck_trunc |NN OP *o |
1075 | pR |OP* |ck_unpack |NN OP *o |
504618e9 |
1076 | sR |bool |is_handle_constructor|NN const OP *o|I32 numargs |
aec46f14 |
1077 | sR |I32 |is_list_assignment|NULLOK const OP *o |
504618e9 |
1078 | s |void |cop_free |NN COP *cop |
46c461b5 |
1079 | s |OP* |modkids |NULLOK OP *o|I32 type |
504618e9 |
1080 | s |OP* |scalarboolean |NN OP *o |
1081 | sR |OP* |newDEFSVOP |
1082 | sR |OP* |new_logop |I32 type|I32 flags|NN OP **firstp|NN OP **otherp |
1083 | s |void |simplify_sort |NN OP *o |
aec46f14 |
1084 | s |const char* |gv_ename |NN GV *gv |
1085 | s |bool |scalar_mod_type|NN const OP *o|I32 type |
1086 | s |OP * |my_kid |NULLOK OP *o|NULLOK OP *attrs|NN OP **imopsp |
1087 | s |OP * |dup_attrlist |NN OP *o |
1088 | s |void |apply_attrs |NN HV *stash|NN SV *target|NULLOK OP *attrs|bool for_my |
1089 | s |void |apply_attrs_my |NN HV *stash|NN OP *target|NULLOK OP *attrs|NN OP **imopsp |
504618e9 |
1090 | s |void |bad_type |I32 n|NN const char *t|NN const char *name|NN const OP *kid |
1091 | s |void |no_bareword_allowed|NN const OP *o |
1092 | sR |OP* |no_fh_allowed|NN OP *o |
1093 | sR |OP* |too_few_arguments|NN OP *o|NN const char* name |
1094 | sR |OP* |too_many_arguments|NN OP *o|NN const char* name |
c7e45529 |
1095 | #endif |
1096 | #if defined(PL_OP_SLAB_ALLOC) |
aec46f14 |
1097 | Apa |void* |Slab_Alloc |int m|size_t sz |
1098 | Ap |void |Slab_Free |NN void *op |
94bdecf9 |
1099 | #endif |
1100 | |
1101 | #if defined(PERL_IN_PERL_C) || defined(PERL_DECL_PROT) |
1102 | s |void |find_beginning |
aec46f14 |
1103 | s |void |forbid_setid |NN const char * s |
1104 | s |void |incpush |NULLOK const char *dir|bool addsubdirs|bool addoldvers|bool usesep|bool canrelocate |
94bdecf9 |
1105 | s |void |init_interp |
1106 | s |void |init_ids |
1107 | s |void |init_lexer |
1108 | s |void |init_main_stash |
1109 | s |void |init_perllib |
aec46f14 |
1110 | s |void |init_postdump_symbols|int argc|NN char **argv|NULLOK char **env |
94bdecf9 |
1111 | s |void |init_predump_symbols |
1112 | rs |void |my_exit_jump |
1113 | s |void |nuke_stacks |
aec46f14 |
1114 | s |void |open_script |NN const char *scriptname|bool dosearch|NN SV *sv |
1115 | s |void |usage |NN const char *name |
1116 | s |void |validate_suid |NN const char *validarg|NN const char *scriptname |
94bdecf9 |
1117 | # if defined(IAMSUID) |
1118 | s |int |fd_on_nosuid_fs|int fd |
1119 | # endif |
aec46f14 |
1120 | s |void* |parse_body |NULLOK char **env|XSINIT_t xsinit |
dd374669 |
1121 | rs |void |run_body |I32 oldscope |
aec46f14 |
1122 | s |void |call_body |NN const OP *myop|bool is_eval |
1123 | s |void* |call_list_body |NN CV *cv |
94bdecf9 |
1124 | #endif |
1125 | |
1126 | #if defined(PERL_IN_PP_C) || defined(PERL_DECL_PROT) |
aec46f14 |
1127 | sR |SV* |refto |NN SV* sv |
94bdecf9 |
1128 | #endif |
1129 | |
1130 | #if defined(PERL_IN_PP_PACK_C) || defined(PERL_DECL_PROT) |
aec46f14 |
1131 | s |I32 |unpack_rec |NN struct tempsym* symptr|NN const char *s \ |
1132 | |NN const char *strbeg|NN const char *strend|NULLOK const char **new_s |
1133 | s |SV ** |pack_rec |NN SV *cat|NN struct tempsym* symptr|NN SV **beglist|NN SV **endlist |
4373e329 |
1134 | s |SV* |mul128 |NN SV *sv|U8 m |
1135 | s |I32 |measure_struct |NN struct tempsym* symptr |
1136 | s |bool |next_symbol |NN struct tempsym* symptr |
1df70142 |
1137 | sR |SV* |is_an_int |NN const char *s|STRLEN l |
4373e329 |
1138 | s |int |div128 |NN SV *pnum|NN bool *done |
1139 | s |const char *|group_end |NN const char *pat|NN const char *patend|char ender |
890ce7af |
1140 | sR |const char *|get_num |NN const char *ppat|NN I32 *lenptr |
aec46f14 |
1141 | ns |bool |need_utf8 |NN const char *pat|NN const char *patend |
1142 | ns |char |first_symbol |NN const char *pat|NN const char *patend |
94bdecf9 |
1143 | #endif |
1144 | |
1145 | #if defined(PERL_IN_PP_CTL_C) || defined(PERL_DECL_PROT) |
46c461b5 |
1146 | sR |OP* |docatch |NULLOK OP *o |
901017d6 |
1147 | s |void |docatch_body |
aec46f14 |
1148 | sR |OP* |dofindlabel |NN OP *o|NN const char *label|NN OP **opstack|NN OP **oplimit |
1149 | sR |OP* |doparseform |NN SV *sv |
901017d6 |
1150 | snR |bool |num_overflow |NV value|I32 fldsize|I32 frcsize |
1151 | sR |I32 |dopoptoeval |I32 startingblock |
1152 | sR |I32 |dopoptolabel |NN const char *label |
1153 | sR |I32 |dopoptoloop |I32 startingblock |
1154 | sR |I32 |dopoptosub |I32 startingblock |
aec46f14 |
1155 | sR |I32 |dopoptosub_at |NN const PERL_CONTEXT* cxstk|I32 startingblock |
46c461b5 |
1156 | s |void |save_lines |NULLOK AV *array|NN SV *sv |
1157 | sR |OP* |doeval |int gimme|NULLOK OP** startop|NULLOK CV* outside|U32 seq |
aec46f14 |
1158 | sR |PerlIO *|doopen_pm |NN const char *name|NN const char *mode |
901017d6 |
1159 | sR |bool |path_is_absolute|NN const char *name |
94bdecf9 |
1160 | #endif |
1161 | |
1162 | #if defined(PERL_IN_PP_HOT_C) || defined(PERL_DECL_PROT) |
a28509cc |
1163 | s |void |do_oddball |NN HV *hash|NN SV **relem|NN SV **firstrelem |
1164 | sR |CV* |get_db_sub |NN SV **svp|NN CV *cv |
46c461b5 |
1165 | sR |SV* |method_common |NN SV* meth|NULLOK U32* hashp |
94bdecf9 |
1166 | #endif |
1167 | |
1168 | #if defined(PERL_IN_PP_SYS_C) || defined(PERL_DECL_PROT) |
b464bac0 |
1169 | s |OP* |doform |NN CV *cv|NN GV *gv|NN OP *retop |
ae558575 |
1170 | s |int |emulate_eaccess|NN const char* path|Mode_t mode |
94bdecf9 |
1171 | # if !defined(HAS_MKDIR) || !defined(HAS_RMDIR) |
b464bac0 |
1172 | sR |int |dooneliner |NN const char *cmd|NN const char *filename |
94bdecf9 |
1173 | # endif |
1174 | #endif |
1175 | |
1176 | #if defined(PERL_IN_REGCOMP_C) || defined(PERL_DECL_PROT) |
a28509cc |
1177 | Es |regnode*|reg |NN struct RExC_state_t *state|I32 paren|NN I32 *flagp |
1178 | Es |regnode*|reganode |NN struct RExC_state_t *state|U8 op|U32 arg |
1179 | Es |regnode*|regatom |NN struct RExC_state_t *state|NN I32 *flagp |
1180 | Es |regnode*|regbranch |NN struct RExC_state_t *state|NN I32 *flagp|I32 first |
1181 | Es |void |reguni |NN const struct RExC_state_t *state|UV uv|NN char *s|NN STRLEN *lenp |
1182 | Es |regnode*|regclass |NN struct RExC_state_t *state |
a3b680e6 |
1183 | ERs |I32 |regcurly |NN const char * |
a28509cc |
1184 | Es |regnode*|reg_node |NN struct RExC_state_t *state|U8 op |
1185 | Es |regnode*|regpiece |NN struct RExC_state_t *state|NN I32 *flagp |
1186 | Es |void |reginsert |NN struct RExC_state_t *state|U8 op|NN regnode *opnd |
1187 | Es |void |regoptail |NN struct RExC_state_t *state|NN regnode *p|NN regnode *val |
1188 | Es |void |regtail |NN struct RExC_state_t *state|NN regnode *p|NN regnode *val |
1189 | Es |char* |regwhite |NN char *p|NN const char *e |
1190 | Es |char* |nextchar |NN struct RExC_state_t* |
94bdecf9 |
1191 | # ifdef DEBUGGING |
aec46f14 |
1192 | Es |regnode*|dumpuntil |NN regnode *start|NN regnode *node \ |
1193 | |NULLOK regnode *last|NN SV* sv|I32 l |
504618e9 |
1194 | Es |void |put_byte |NN SV* sv|int c |
94bdecf9 |
1195 | # endif |
aec46f14 |
1196 | Es |void |scan_commit |NN struct RExC_state_t*|NN struct scan_data_t *data |
a28509cc |
1197 | Es |void |cl_anything |NN struct RExC_state_t*|NN struct regnode_charclass_class *cl |
1198 | Es |int |cl_is_anything |NN const struct regnode_charclass_class *cl |
1199 | Es |void |cl_init |NN struct RExC_state_t*|NN struct regnode_charclass_class *cl |
1200 | Es |void |cl_init_zero |NN struct RExC_state_t*|NN struct regnode_charclass_class *cl |
1201 | Es |void |cl_and |NN struct regnode_charclass_class *cl \ |
46c461b5 |
1202 | |NN const struct regnode_charclass_class *and_with |
a28509cc |
1203 | Es |void |cl_or |NN struct RExC_state_t*|NN struct regnode_charclass_class *cl \ |
1204 | |NN const struct regnode_charclass_class *or_with |
aec46f14 |
1205 | Es |I32 |study_chunk |NN struct RExC_state_t* pRExC_state|NN regnode **scanp \ |
9a957fbc |
1206 | |NN I32 *deltap|NN regnode *last|NULLOK struct scan_data_t *data \ |
a3621e74 |
1207 | |U32 flags|U32 depth |
aec46f14 |
1208 | Es |I32 |add_data |NN struct RExC_state_t*|I32 n|NN const char *s |
46c461b5 |
1209 | rs |void |re_croak2 |NN const char* pat1|NN const char* pat2|... |
aec46f14 |
1210 | Es |I32 |regpposixcc |NN struct RExC_state_t*|I32 value |
1211 | Es |void |checkposixcc |NN struct RExC_state_t* |
a3621e74 |
1212 | |
aec46f14 |
1213 | Es |I32 |make_trie |NN struct RExC_state_t*|NN regnode *startbranch \ |
1214 | |NN regnode *first|NN regnode *last|NN regnode *tail \ |
a3621e74 |
1215 | |U32 flags |
94bdecf9 |
1216 | #endif |
1217 | |
1218 | #if defined(PERL_IN_REGEXEC_C) || defined(PERL_DECL_PROT) |
a3b680e6 |
1219 | ERs |I32 |regmatch |NN regnode *prog |
1220 | ERs |I32 |regrepeat |NN const regnode *p|I32 max |
1221 | ERs |I32 |regrepeat_hard |NN regnode *p|I32 max|NN I32 *lp |
46c461b5 |
1222 | ERs |I32 |regtry |NN regexp *prog|NN char *startpos |
1223 | ERs |bool |reginclass |NN const regnode *n|NN const U8 *p|NULLOK STRLEN *lenp\ |
1224 | |bool do_utf8sv_is_utf8 |
de37762f |
1225 | Es |CHECKPOINT|regcppush |I32 parenfloor |
1226 | Es |char*|regcppop |
1227 | Es |char*|regcp_set_to |I32 ss |
46c461b5 |
1228 | Es |void |cache_re |NN regexp *prog |
aec46f14 |
1229 | ERs |U8* |reghop |NN U8 *pos|I32 off |
1230 | ERs |U8* |reghop3 |NN U8 *pos|I32 off|NN U8 *lim |
1231 | ERs |U8* |reghopmaybe |NN U8 *pos|I32 off |
a3b680e6 |
1232 | ERs |U8* |reghopmaybe3 |NN U8 *pos|I32 off|NN U8 *lim |
1233 | ERs |char* |find_byclass |NN regexp * prog|NN regnode *c|NN char *s|NN const char *strend|I32 norun |
1234 | Es |void |to_utf8_substr |NN regexp * prog |
1235 | Es |void |to_byte_substr |NN regexp * prog |
94bdecf9 |
1236 | #endif |
1237 | |
1238 | #if defined(PERL_IN_DUMP_C) || defined(PERL_DECL_PROT) |
1239 | s |CV* |deb_curcv |I32 ix |
46c461b5 |
1240 | s |void |debprof |NN const OP *o |
94bdecf9 |
1241 | #endif |
1242 | |
1243 | #if defined(PERL_IN_SCOPE_C) || defined(PERL_DECL_PROT) |
46c461b5 |
1244 | s |SV* |save_scalar_at |NN SV **sptr |
94bdecf9 |
1245 | #endif |
1246 | |
e15faf7d |
1247 | #if defined(PERL_IN_GV_C) || defined(PERL_IN_SV_C) || defined(PERL_IN_PAD_C) || defined(PERL_DECL_PROT) |
1248 | po |void |sv_add_backref |NN SV *tsv|NN SV *sv |
1249 | #endif |
1250 | |
94bdecf9 |
1251 | #if defined(PERL_IN_SV_C) || defined(PERL_DECL_PROT) |
aec46f14 |
1252 | nsR |char * |uiv_2buf |NN char *buf|IV iv|UV uv|int is_uv|NN char **peob |
1b6737cc |
1253 | sR |IV |asIV |NN SV* sv |
1254 | sR |UV |asUV |NN SV* sv |
1255 | s |void |sv_unglob |NN SV* sv |
1256 | s |void |not_a_number |NN SV *sv |
1257 | s |I32 |visit |NN SVFUNC_t f|U32 flags|U32 mask |
e15faf7d |
1258 | s |void |sv_del_backref |NN SV *target|NN SV *ref |
be2ef075 |
1259 | sR |SV * |varname |NULLOK GV *gv|const char gvtype|PADOFFSET targ \ |
1b6737cc |
1260 | |NULLOK SV *keyname|I32 aindex|int subscript_type |
94bdecf9 |
1261 | # ifdef DEBUGGING |
46c461b5 |
1262 | s |void |del_sv |NN SV *p |
94bdecf9 |
1263 | # endif |
1264 | # if !defined(NV_PRESERVES_UV) |
46c461b5 |
1265 | s |int |sv_2iuv_non_preserve |NN SV *sv|I32 numtype |
94bdecf9 |
1266 | # endif |
a3b680e6 |
1267 | sR |I32 |expect_number |NN char** pattern |
94bdecf9 |
1268 | # |
a3b680e6 |
1269 | s |bool |utf8_mg_pos |NN SV *sv|NN MAGIC **mgp|NN STRLEN **cachep \ |
245d4a47 |
1270 | |I32 i|NN I32 *offsetp|I32 uoff \ |
1271 | |NN const U8 **sp|NN const U8 *start \ |
1272 | |NN const U8 *send |
1273 | s |bool |utf8_mg_pos_init |NN SV *sv|NN MAGIC **mgp \ |
1274 | |NN STRLEN **cachep|I32 i|I32 offsetp \ |
1275 | |NN const U8 *s|NN const U8 *start |
f8c7b90f |
1276 | #if defined(PERL_OLD_COPY_ON_WRITE) |
aec46f14 |
1277 | sM |void |sv_release_COW |NN SV *sv|NN const char *pvx|STRLEN len|NN SV *after |
765f542d |
1278 | #endif |
94bdecf9 |
1279 | #endif |
1280 | |
1281 | #if defined(PERL_IN_TOKE_C) || defined(PERL_DECL_PROT) |
1282 | s |void |check_uni |
1283 | s |void |force_next |I32 type |
46c461b5 |
1284 | s |char* |force_version |NN char *start|int guessing |
1285 | s |char* |force_word |NN char *start|int token|int check_keyword \ |
94bdecf9 |
1286 | |int allow_pack|int allow_tick |
46c461b5 |
1287 | s |SV* |tokeq |NN SV *sv |
94bdecf9 |
1288 | s |int |pending_ident |
46c461b5 |
1289 | sR |char* |scan_const |NN char *start |
1290 | sR |char* |scan_formline |NN char *s |
1291 | sR |char* |scan_heredoc |NN char *s |
f54cb97a |
1292 | s |char* |scan_ident |NN char *s|NN const char *send|NN char *dest \ |
94bdecf9 |
1293 | |STRLEN destlen|I32 ck_uni |
46c461b5 |
1294 | sR |char* |scan_inputsymbol|NN char *start |
1295 | sR |char* |scan_pat |NN char *start|I32 type |
1296 | sR |char* |scan_str |NN char *start|int keep_quoted|int keep_delims |
1297 | sR |char* |scan_subst |NN char *start |
1298 | sR |char* |scan_trans |NN char *start |
1299 | s |char* |scan_word |NN char *s|NN char *dest|STRLEN destlen \ |
1300 | |int allow_package|NN STRLEN *slp |
1301 | sR |char* |skipspace |NN char *s |
1302 | sR |char* |swallow_bom |NN U8 *s |
f54cb97a |
1303 | s |void |checkcomma |NN char *s|NN const char *name|NN const char *what |
46c461b5 |
1304 | s |void |force_ident |NN const char *s|int kind |
1305 | s |void |incline |NN char *s |
1306 | s |int |intuit_method |NN char *s|NN GV *gv |
1307 | s |int |intuit_more |NN char *s |
1308 | s |I32 |lop |I32 f|int x|NN char *s |
1309 | rs |void |missingterm |NULLOK char *s |
1310 | s |void |no_op |NN const char *what|NULLOK char *s |
94bdecf9 |
1311 | s |void |set_csh |
46c461b5 |
1312 | sR |I32 |sublex_done |
1313 | sR |I32 |sublex_push |
1314 | sR |I32 |sublex_start |
890ce7af |
1315 | sR |char * |filter_gets |NN SV *sv|NN PerlIO *fp|STRLEN append |
1316 | sR |HV * |find_in_my_stash|NN const char *pkgname|I32 len |
aec46f14 |
1317 | s |SV* |new_constant |NULLOK const char *s|STRLEN len|NN const char *key|NN SV *sv \ |
1318 | |NULLOK SV *pv|NULLOK const char *type |
94bdecf9 |
1319 | # if defined(DEBUGGING) |
46c461b5 |
1320 | s |int |tokereport |NN const char *s|I32 rv |
94bdecf9 |
1321 | # endif |
1322 | s |int |ao |int toketype |
1323 | s |void |depcom |
bfed75c6 |
1324 | s |const char*|incl_perldb |
94bdecf9 |
1325 | # if defined(PERL_CR_FILTER) |
9d4ba2ae |
1326 | s |I32 |cr_textfilter |int idx|NULLOK SV *sv|int maxlen |
94bdecf9 |
1327 | # endif |
1328 | #endif |
1329 | |
1330 | #if defined(PERL_IN_UNIVERSAL_C) || defined(PERL_DECL_PROT) |
46c461b5 |
1331 | s |SV*|isa_lookup |NULLOK HV *stash|NN const char *name|NULLOK HV *name_stash|int len|int level |
94bdecf9 |
1332 | #endif |
1333 | |
1334 | #if defined(PERL_IN_LOCALE_C) || defined(PERL_DECL_PROT) |
27da23d5 |
1335 | #if defined(USE_LOCALE_NUMERIC) || defined(USE_LOCALE_COLLATE) |
8772537c |
1336 | s |char* |stdize_locale |NN char* locs |
94bdecf9 |
1337 | #endif |
27da23d5 |
1338 | #endif |
94bdecf9 |
1339 | |
1340 | #if defined(PERL_IN_UTIL_C) || defined(PERL_DECL_PROT) |
8772537c |
1341 | s |COP* |closest_cop |NN COP *cop|NULLOK const OP *o |
94bdecf9 |
1342 | s |SV* |mess_alloc |
890ce7af |
1343 | s |const char *|vdie_croak_common|NULLOK const char *pat|NULLOK va_list *args \ |
1344 | |NULLOK STRLEN *msglen|NULLOK I32* utf8 |
1345 | s |void |vdie_common |NULLOK const char *message|STRLEN msglen|I32 utf8 |
94bdecf9 |
1346 | #endif |
1347 | |
4801ca72 |
1348 | #if defined(PERL_IN_NUMERIC_C) || defined(PERL_DECL_PROT) |
1349 | sn |NV|mulexp10 |NV value|I32 exponent |
1350 | #endif |
1351 | |
646ca15d |
1352 | #if defined(PERL_IN_UTF8_C) || defined(PERL_DECL_PROT) |
1353 | s |STRLEN |is_utf8_char_slow|NN const U8 *s|const STRLEN len |
1354 | #endif |
1355 | |
94bdecf9 |
1356 | START_EXTERN_C |
1357 | |
1b6737cc |
1358 | Apd |void |sv_setsv_flags |NN SV* dsv|NULLOK SV* ssv|I32 flags |
4373e329 |
1359 | Apd |void |sv_catpvn_flags|NN SV* sv|NN const char* ptr|STRLEN len|I32 flags |
46c461b5 |
1360 | Apd |void |sv_catsv_flags |NN SV* dsv|NULLOK SV* ssv|I32 flags |
4373e329 |
1361 | Apd |STRLEN |sv_utf8_upgrade_flags|NN SV *sv|I32 flags |
46c461b5 |
1362 | Apd |char* |sv_pvn_force_flags|NN SV* sv|NULLOK STRLEN* lp|I32 flags |
4373e329 |
1363 | Apd |void |sv_copypv |NN SV* dsv|NN SV* ssv |
1364 | Ap |char* |my_atof2 |NN const char *s|NN NV* value |
94bdecf9 |
1365 | Apn |int |my_socketpair |int family|int type|int protocol|int fd[2] |
f8c7b90f |
1366 | #ifdef PERL_OLD_COPY_ON_WRITE |
46c461b5 |
1367 | pMXE |SV* |sv_setsv_cow |NN SV* dsv|NN SV* ssv |
ed252734 |
1368 | #endif |
94bdecf9 |
1369 | |
1370 | #if defined(USE_PERLIO) && !defined(USE_SFIO) |
46c461b5 |
1371 | Ap |int |PerlIO_close |NULLOK PerlIO *f |
1372 | Ap |int |PerlIO_fill |NULLOK PerlIO *f |
1373 | Ap |int |PerlIO_fileno |NULLOK PerlIO *f |
1374 | Ap |int |PerlIO_eof |NULLOK PerlIO *f |
1375 | Ap |int |PerlIO_error |NULLOK PerlIO *f |
1376 | Ap |int |PerlIO_flush |NULLOK PerlIO *f |
1377 | Ap |void |PerlIO_clearerr |NULLOK PerlIO *f |
1378 | Ap |void |PerlIO_set_cnt |NULLOK PerlIO *f|int cnt |
1379 | Ap |void |PerlIO_set_ptrcnt |NULLOK PerlIO *f|NN STDCHAR *ptr|int cnt |
1380 | Ap |void |PerlIO_setlinebuf |NULLOK PerlIO *f |
1381 | Ap |SSize_t|PerlIO_read |NULLOK PerlIO *f|NN void *buf|Size_t count |
1382 | Ap |SSize_t|PerlIO_write |NULLOK PerlIO *f|NN const void *buf|Size_t count |
1383 | Ap |SSize_t|PerlIO_unread |NULLOK PerlIO *f|NN const void *buf|Size_t count |
1384 | Ap |Off_t |PerlIO_tell |NULLOK PerlIO *f |
1385 | Ap |int |PerlIO_seek |NULLOK PerlIO *f|Off_t offset|int whence |
94bdecf9 |
1386 | |
46c461b5 |
1387 | Ap |STDCHAR *|PerlIO_get_base |NULLOK PerlIO *f |
1388 | Ap |STDCHAR *|PerlIO_get_ptr |NULLOK PerlIO *f |
1389 | ApR |int |PerlIO_get_bufsiz |NULLOK PerlIO *f |
1390 | ApR |int |PerlIO_get_cnt |NULLOK PerlIO *f |
94bdecf9 |
1391 | |
46c461b5 |
1392 | ApR |PerlIO *|PerlIO_stdin |
1393 | ApR |PerlIO *|PerlIO_stdout |
1394 | ApR |PerlIO *|PerlIO_stderr |
94bdecf9 |
1395 | #endif /* PERLIO_LAYERS */ |
1396 | |
d6721266 |
1397 | p |void |deb_stack_all |
1398 | #ifdef PERL_IN_DEB_C |
b64e5050 |
1399 | s |void |deb_stack_n |NN SV** stack_base|I32 stack_min \ |
3f46c5a6 |
1400 | |I32 stack_max|I32 mark_min|I32 mark_max |
d6721266 |
1401 | #endif |
1402 | |
66a1b24b |
1403 | pda |PADLIST*|pad_new |int flags |
b64e5050 |
1404 | pd |void |pad_undef |NN CV* cv |
4373e329 |
1405 | pd |PADOFFSET|pad_add_name |NN const char *name\ |
b64e5050 |
1406 | |NULLOK HV* typestash|NULLOK HV* ourstash|bool clone |
1407 | pd |PADOFFSET|pad_add_anon |NN SV* sv|OPCODE op_type |
66a1b24b |
1408 | pd |void |pad_check_dup |NN const char* name|bool is_our|NN const HV* ourstash |
dd2155a4 |
1409 | #ifdef DEBUGGING |
66a1b24b |
1410 | pd |void |pad_setsv |PADOFFSET po|NN SV* sv |
dd2155a4 |
1411 | #endif |
1412 | pd |void |pad_block_start|int full |
1413 | pd |void |pad_tidy |padtidy_type type |
b64e5050 |
1414 | pd |void |do_dump_pad |I32 level|NN PerlIO *file|NULLOK PADLIST *padlist|int full |
46c461b5 |
1415 | pd |void |pad_fixup_inner_anons|NN PADLIST *padlist|NN CV *old_cv|NN CV *new_cv |
dd2155a4 |
1416 | |
66a1b24b |
1417 | pd |void |pad_push |NN PADLIST *padlist|int depth |
901017d6 |
1418 | pR |HV* |pad_compname_type|const PADOFFSET po |
dd2155a4 |
1419 | |
1420 | #if defined(PERL_IN_PAD_C) || defined(PERL_DECL_PROT) |
282e1742 |
1421 | sd |PADOFFSET|pad_findlex |NN const char *name|NN const CV* cv|U32 seq|int warn \ |
b64e5050 |
1422 | |NULLOK SV** out_capture|NN SV** out_name_sv \ |
1423 | |NN int *out_flags |
dd2155a4 |
1424 | # if defined(DEBUGGING) |
66a1b24b |
1425 | sd |void |cv_dump |NN const CV *cv|NN const char *title |
dd2155a4 |
1426 | # endif |
dd2155a4 |
1427 | #endif |
b64e5050 |
1428 | pdR |CV* |find_runcv |NULLOK U32 *db_seqp |
dd28f7bb |
1429 | p |void |free_tied_hv_pool |
b4ab917c |
1430 | #if defined(DEBUGGING) |
46c461b5 |
1431 | pR |int |get_debug_opts |NN const char **s|bool givehelp |
b4ab917c |
1432 | #endif |
46c461b5 |
1433 | Ap |void |save_set_svflags|NULLOK SV* sv|U32 mask|U32 val |
66a1b24b |
1434 | Apod |void |hv_assert |NN HV* tb |
d6721266 |
1435 | |
b464bac0 |
1436 | ApdR |SV* |hv_scalar |NN HV* hv |
1437 | ApoR |I32* |hv_riter_p |NN HV* hv |
1438 | ApoR |HE** |hv_eiter_p |NN HV* hv |
1439 | Apo |void |hv_riter_set |NN HV* hv|I32 riter |
46c461b5 |
1440 | Apo |void |hv_eiter_set |NN HV* hv|NULLOK HE* eiter |
1441 | Apo |void |hv_name_set |NN HV* hv|NULLOK const char *name|I32 len|int flags |
b464bac0 |
1442 | Apd |void |hv_clear_placeholders |NN HV* hb |
1443 | ApoR |I32* |hv_placeholders_p |NN HV* hv |
1444 | ApoR |I32 |hv_placeholders_get |NN HV* hv |
66a1b24b |
1445 | Apo |void |hv_placeholders_set |NN HV* hv|I32 ph |
ca732855 |
1446 | |
66a1b24b |
1447 | p |SV* |magic_scalarpack|NN HV* hv|NN MAGIC* mg |
29489e7c |
1448 | #ifdef PERL_IN_SV_C |
b64e5050 |
1449 | sMd |SV* |find_uninit_var|NULLOK OP* obase|NULLOK SV* uninit_sv|bool top |
29489e7c |
1450 | #endif |
96adfaa1 |
1451 | |
1109a392 |
1452 | #ifdef PERL_NEED_MY_HTOLE16 |
1453 | np |U16 |my_htole16 |U16 n |
1454 | #endif |
1455 | #ifdef PERL_NEED_MY_LETOH16 |
1456 | np |U16 |my_letoh16 |U16 n |
1457 | #endif |
1458 | #ifdef PERL_NEED_MY_HTOBE16 |
1459 | np |U16 |my_htobe16 |U16 n |
1460 | #endif |
1461 | #ifdef PERL_NEED_MY_BETOH16 |
1462 | np |U16 |my_betoh16 |U16 n |
1463 | #endif |
1464 | #ifdef PERL_NEED_MY_HTOLE32 |
1465 | np |U32 |my_htole32 |U32 n |
1466 | #endif |
1467 | #ifdef PERL_NEED_MY_LETOH32 |
1468 | np |U32 |my_letoh32 |U32 n |
1469 | #endif |
1470 | #ifdef PERL_NEED_MY_HTOBE32 |
1471 | np |U32 |my_htobe32 |U32 n |
1472 | #endif |
1473 | #ifdef PERL_NEED_MY_BETOH32 |
1474 | np |U32 |my_betoh32 |U32 n |
1475 | #endif |
1476 | #ifdef PERL_NEED_MY_HTOLE64 |
1477 | np |U64 |my_htole64 |U64 n |
1478 | #endif |
1479 | #ifdef PERL_NEED_MY_LETOH64 |
1480 | np |U64 |my_letoh64 |U64 n |
1481 | #endif |
1482 | #ifdef PERL_NEED_MY_HTOBE64 |
1483 | np |U64 |my_htobe64 |U64 n |
1484 | #endif |
1485 | #ifdef PERL_NEED_MY_BETOH64 |
1486 | np |U64 |my_betoh64 |U64 n |
1487 | #endif |
1488 | |
1489 | #ifdef PERL_NEED_MY_HTOLES |
1490 | np |short |my_htoles |short n |
1491 | #endif |
1492 | #ifdef PERL_NEED_MY_LETOHS |
1493 | np |short |my_letohs |short n |
1494 | #endif |
1495 | #ifdef PERL_NEED_MY_HTOBES |
1496 | np |short |my_htobes |short n |
1497 | #endif |
1498 | #ifdef PERL_NEED_MY_BETOHS |
1499 | np |short |my_betohs |short n |
1500 | #endif |
1501 | #ifdef PERL_NEED_MY_HTOLEI |
1502 | np |int |my_htolei |int n |
1503 | #endif |
1504 | #ifdef PERL_NEED_MY_LETOHI |
1505 | np |int |my_letohi |int n |
1506 | #endif |
1507 | #ifdef PERL_NEED_MY_HTOBEI |
1508 | np |int |my_htobei |int n |
1509 | #endif |
1510 | #ifdef PERL_NEED_MY_BETOHI |
1511 | np |int |my_betohi |int n |
1512 | #endif |
1513 | #ifdef PERL_NEED_MY_HTOLEL |
1514 | np |long |my_htolel |long n |
1515 | #endif |
1516 | #ifdef PERL_NEED_MY_LETOHL |
1517 | np |long |my_letohl |long n |
1518 | #endif |
1519 | #ifdef PERL_NEED_MY_HTOBEL |
1520 | np |long |my_htobel |long n |
1521 | #endif |
1522 | #ifdef PERL_NEED_MY_BETOHL |
1523 | np |long |my_betohl |long n |
1524 | #endif |
1525 | |
b64e5050 |
1526 | np |void |my_swabn |NN void* ptr|int n |
1109a392 |
1527 | |
40e48b40 |
1528 | Ap |GV* |gv_fetchpvn_flags|NN const char* name|STRLEN len|I32 flags|I32 sv_type |
1529 | Ap |GV* |gv_fetchsv|NN SV *name|I32 flags|I32 sv_type |
9d4ba2ae |
1530 | dpR |bool |is_gv_magical_sv|NN SV *name|U32 flags |
7a5fd60d |
1531 | |
ed221c57 |
1532 | ApR |bool |stashpv_hvname_match|NN const COP *cop|NN const HV *hv |
2e0de35c |
1533 | |
41e4abd8 |
1534 | #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP |
46c461b5 |
1535 | p |void |dump_sv_child |NN SV *sv |
41e4abd8 |
1536 | #endif |
1537 | |
c69033f2 |
1538 | #ifdef PERL_DONT_CREATE_GVSV |
1539 | Ap |GV* |gv_SVadd |NN GV* gv |
1540 | #endif |
9bd8fe79 |
1541 | Apo |bool |ckwarn |U32 w |
1542 | Apo |bool |ckwarn_d |U32 w |
c69033f2 |
1543 | |
77354fb4 |
1544 | p |void |offer_nice_chunk |NN void *chunk|U32 chunk_size |
1545 | |
3540d4ce |
1546 | END_EXTERN_C |
1df70142 |
1547 | /* |
1548 | * ex: set ts=8 sts=4 sw=4 noet: |
1549 | */ |