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