Commit | Line | Data |
---|---|---|
37442d52 RGS |
1 | /* -*- buffer-read-only: t -*- |
2 | * | |
f5e3445d RGS |
3 | * proto.h |
4 | * | |
4bb101f2 | 5 | * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, |
2419183b | 6 | * 2000, 2001, 2002, 2003, 2004, 2005, by Larry Wall and others |
f5e3445d RGS |
7 | * |
8 | * You may distribute under the terms of either the GNU General Public | |
9 | * License or the Artistic License, as specified in the README file. | |
10 | * | |
11 | * !!!!!!! DO NOT EDIT THIS FILE !!!!!!! | |
12 | * This file is built by embed.pl from data in embed.fnc, embed.pl, | |
13 | * pp.sym, intrpvar.h, perlvars.h and thrdvar.h. | |
14 | * Any changes made here will be lost! | |
15 | * | |
16 | * Edit those files and run 'make regen_headers' to effect changes. | |
17 | */ | |
1d7c1841 | 18 | |
1d7c1841 GS |
19 | START_EXTERN_C |
20 | ||
21 | #if defined(PERL_IMPLICIT_SYS) | |
22 | PERL_CALLCONV PerlInterpreter* perl_alloc_using(struct IPerlMem* m, struct IPerlMem* ms, struct IPerlMem* mp, struct IPerlEnv* e, struct IPerlStdIO* io, struct IPerlLIO* lio, struct IPerlDir* d, struct IPerlSock* s, struct IPerlProc* p); | |
1d7c1841 | 23 | #endif |
b46bc2b6 | 24 | PERL_CALLCONV PerlInterpreter* perl_alloc(void); |
4373e329 | 25 | PERL_CALLCONV void perl_construct(PerlInterpreter* interp) |
abb2c242 | 26 | __attribute__nonnull__(1); |
f54cb97a | 27 | |
4373e329 | 28 | PERL_CALLCONV int perl_destruct(PerlInterpreter* interp) |
abb2c242 | 29 | __attribute__nonnull__(1); |
f54cb97a | 30 | |
4373e329 | 31 | PERL_CALLCONV void perl_free(PerlInterpreter* interp) |
abb2c242 | 32 | __attribute__nonnull__(1); |
f54cb97a | 33 | |
4373e329 | 34 | PERL_CALLCONV int perl_run(PerlInterpreter* interp) |
abb2c242 | 35 | __attribute__nonnull__(1); |
f54cb97a | 36 | |
1d7c1841 | 37 | PERL_CALLCONV int perl_parse(PerlInterpreter* interp, XSINIT_t xsinit, int argc, char** argv, char** env); |
a28509cc AL |
38 | PERL_CALLCONV bool Perl_doing_taint(int argc, char** argv, char** env) |
39 | __attribute__warn_unused_result__; | |
40 | ||
1d7c1841 GS |
41 | #if defined(USE_ITHREADS) |
42 | PERL_CALLCONV PerlInterpreter* perl_clone(PerlInterpreter* interp, UV flags); | |
43 | # if defined(PERL_IMPLICIT_SYS) | |
44 | PERL_CALLCONV PerlInterpreter* perl_clone_using(PerlInterpreter *interp, UV flags, struct IPerlMem* m, struct IPerlMem* ms, struct IPerlMem* mp, struct IPerlEnv* e, struct IPerlStdIO* io, struct IPerlLIO* lio, struct IPerlDir* d, struct IPerlSock* s, struct IPerlProc* p); | |
45 | # endif | |
46 | #endif | |
47 | ||
4373e329 | 48 | PERL_CALLCONV Malloc_t Perl_malloc(MEM_SIZE nbytes) |
abb2c242 JH |
49 | __attribute__malloc__ |
50 | __attribute__warn_unused_result__; | |
f54cb97a | 51 | |
4373e329 | 52 | PERL_CALLCONV Malloc_t Perl_calloc(MEM_SIZE elements, MEM_SIZE size) |
abb2c242 JH |
53 | __attribute__malloc__ |
54 | __attribute__warn_unused_result__; | |
f54cb97a | 55 | |
4373e329 | 56 | PERL_CALLCONV Malloc_t Perl_realloc(Malloc_t where, MEM_SIZE nbytes) |
abb2c242 JH |
57 | __attribute__malloc__ |
58 | __attribute__warn_unused_result__; | |
f54cb97a | 59 | |
1d7c1841 | 60 | PERL_CALLCONV Free_t Perl_mfree(Malloc_t where); |
cae6d0e5 | 61 | #if defined(MYMALLOC) |
b464bac0 AL |
62 | PERL_CALLCONV MEM_SIZE Perl_malloced_size(void *p) |
63 | __attribute__warn_unused_result__; | |
64 | ||
1d7c1841 GS |
65 | #endif |
66 | ||
255164ba DM |
67 | PERL_CALLCONV void* Perl_get_context(void) |
68 | __attribute__warn_unused_result__; | |
69 | ||
70 | PERL_CALLCONV void Perl_set_context(void *thx) | |
71 | __attribute__nonnull__(1); | |
72 | ||
ba869deb | 73 | |
1d7c1841 GS |
74 | END_EXTERN_C |
75 | ||
76 | /* functions with flag 'n' should come before here */ | |
1d7c1841 | 77 | START_EXTERN_C |
1d7c1841 | 78 | # include "pp_proto.h" |
46c461b5 AL |
79 | PERL_CALLCONV SV* Perl_amagic_call(pTHX_ SV* left, SV* right, int method, int dir) |
80 | __attribute__nonnull__(pTHX_1) | |
81 | __attribute__nonnull__(pTHX_2); | |
82 | ||
255164ba DM |
83 | PERL_CALLCONV bool Perl_Gv_AMupdate(pTHX_ HV* stash) |
84 | __attribute__nonnull__(pTHX_1); | |
85 | ||
86 | PERL_CALLCONV CV* Perl_gv_handler(pTHX_ HV* stash, I32 id) | |
87 | __attribute__warn_unused_result__; | |
88 | ||
89 | PERL_CALLCONV OP* Perl_append_elem(pTHX_ I32 optype, OP* first, OP* last); | |
1d7c1841 | 90 | PERL_CALLCONV OP* Perl_append_list(pTHX_ I32 optype, LISTOP* first, LISTOP* last); |
255164ba DM |
91 | PERL_CALLCONV I32 Perl_apply(pTHX_ I32 type, SV** mark, SV** sp) |
92 | __attribute__nonnull__(pTHX_2) | |
93 | __attribute__nonnull__(pTHX_3); | |
94 | ||
95 | PERL_CALLCONV void Perl_apply_attrs_string(pTHX_ const char *stashpv, CV *cv, const char *attrstr, STRLEN len) | |
96 | __attribute__nonnull__(pTHX_1) | |
97 | __attribute__nonnull__(pTHX_2) | |
98 | __attribute__nonnull__(pTHX_3); | |
99 | ||
1d7c1841 | 100 | PERL_CALLCONV void Perl_av_clear(pTHX_ AV* ar); |
1b6737cc | 101 | PERL_CALLCONV SV* Perl_av_delete(pTHX_ AV* ar, I32 key, I32 flags); |
a3b680e6 | 102 | PERL_CALLCONV bool Perl_av_exists(pTHX_ AV* ar, I32 key) |
abb2c242 | 103 | __attribute__warn_unused_result__; |
a3b680e6 AL |
104 | |
105 | PERL_CALLCONV void Perl_av_extend(pTHX_ AV* ar, I32 key) | |
abb2c242 | 106 | __attribute__nonnull__(pTHX_1); |
a3b680e6 AL |
107 | |
108 | PERL_CALLCONV AV* Perl_av_fake(pTHX_ I32 size, SV** svp) | |
abb2c242 JH |
109 | __attribute__warn_unused_result__ |
110 | __attribute__nonnull__(pTHX_2); | |
a3b680e6 AL |
111 | |
112 | PERL_CALLCONV SV** Perl_av_fetch(pTHX_ AV* ar, I32 key, I32 lval) | |
abb2c242 | 113 | __attribute__warn_unused_result__; |
a3b680e6 | 114 | |
255164ba DM |
115 | PERL_CALLCONV void Perl_av_fill(pTHX_ AV* ar, I32 fill) |
116 | __attribute__nonnull__(pTHX_1); | |
117 | ||
a3b680e6 | 118 | PERL_CALLCONV I32 Perl_av_len(pTHX_ const AV* ar) |
255164ba DM |
119 | __attribute__warn_unused_result__ |
120 | __attribute__nonnull__(pTHX_1); | |
a3b680e6 AL |
121 | |
122 | PERL_CALLCONV AV* Perl_av_make(pTHX_ I32 size, SV** svp) | |
abb2c242 JH |
123 | __attribute__warn_unused_result__ |
124 | __attribute__nonnull__(pTHX_2); | |
a3b680e6 | 125 | |
1b6737cc | 126 | PERL_CALLCONV SV* Perl_av_pop(pTHX_ AV* ar); |
255164ba DM |
127 | PERL_CALLCONV void Perl_av_push(pTHX_ AV* ar, SV* val) |
128 | __attribute__nonnull__(pTHX_2); | |
129 | ||
130 | PERL_CALLCONV void Perl_av_reify(pTHX_ AV* ar) | |
131 | __attribute__nonnull__(pTHX_1); | |
132 | ||
a3b680e6 | 133 | PERL_CALLCONV SV* Perl_av_shift(pTHX_ AV* ar) |
abb2c242 | 134 | __attribute__warn_unused_result__; |
a3b680e6 | 135 | |
1d7c1841 GS |
136 | PERL_CALLCONV SV** Perl_av_store(pTHX_ AV* ar, I32 key, SV* val); |
137 | PERL_CALLCONV void Perl_av_undef(pTHX_ AV* ar); | |
138 | PERL_CALLCONV void Perl_av_unshift(pTHX_ AV* ar, I32 num); | |
255164ba DM |
139 | PERL_CALLCONV SV** Perl_av_arylen_p(pTHX_ AV* av) |
140 | __attribute__nonnull__(pTHX_1); | |
141 | ||
a3b680e6 | 142 | PERL_CALLCONV OP* Perl_bind_match(pTHX_ I32 type, OP* left, OP* pat) |
abb2c242 JH |
143 | __attribute__warn_unused_result__ |
144 | __attribute__nonnull__(pTHX_2) | |
145 | __attribute__nonnull__(pTHX_3); | |
a3b680e6 AL |
146 | |
147 | PERL_CALLCONV OP* Perl_block_end(pTHX_ I32 floor, OP* seq) | |
255164ba DM |
148 | __attribute__warn_unused_result__ |
149 | __attribute__nonnull__(pTHX_2); | |
a3b680e6 AL |
150 | |
151 | PERL_CALLCONV I32 Perl_block_gimme(pTHX) | |
abb2c242 | 152 | __attribute__warn_unused_result__; |
a3b680e6 AL |
153 | |
154 | PERL_CALLCONV int Perl_block_start(pTHX_ int full) | |
abb2c242 | 155 | __attribute__warn_unused_result__; |
a3b680e6 | 156 | |
1d7c1841 | 157 | PERL_CALLCONV void Perl_boot_core_UNIVERSAL(pTHX); |
36ed5425 | 158 | PERL_CALLCONV void Perl_boot_core_PerlIO(pTHX); |
a3b680e6 | 159 | PERL_CALLCONV void Perl_call_list(pTHX_ I32 oldscope, AV* av_list) |
abb2c242 | 160 | __attribute__nonnull__(pTHX_2); |
a3b680e6 | 161 | |
4373e329 | 162 | PERL_CALLCONV bool Perl_cando(pTHX_ Mode_t mode, Uid_t effective, const Stat_t* statbufp) |
abb2c242 JH |
163 | __attribute__warn_unused_result__ |
164 | __attribute__nonnull__(pTHX_3); | |
f54cb97a | 165 | |
53c1dcc0 AL |
166 | PERL_CALLCONV U32 Perl_cast_ulong(pTHX_ NV f) |
167 | __attribute__warn_unused_result__; | |
168 | ||
169 | PERL_CALLCONV I32 Perl_cast_i32(pTHX_ NV f) | |
170 | __attribute__warn_unused_result__; | |
171 | ||
172 | PERL_CALLCONV IV Perl_cast_iv(pTHX_ NV f) | |
173 | __attribute__warn_unused_result__; | |
174 | ||
175 | PERL_CALLCONV UV Perl_cast_uv(pTHX_ NV f) | |
176 | __attribute__warn_unused_result__; | |
177 | ||
cea2e8a9 | 178 | #if !defined(HAS_TRUNCATE) && !defined(HAS_CHSIZE) && defined(F_FREESP) |
53c1dcc0 AL |
179 | PERL_CALLCONV I32 Perl_my_chsize(pTHX_ int fd, Off_t length) |
180 | __attribute__warn_unused_result__; | |
181 | ||
cea2e8a9 | 182 | #endif |
53c1dcc0 AL |
183 | PERL_CALLCONV OP* Perl_convert(pTHX_ I32 optype, I32 flags, OP* o) |
184 | __attribute__warn_unused_result__; | |
185 | ||
f54cb97a | 186 | PERL_CALLCONV void Perl_croak(pTHX_ const char* pat, ...) |
abb2c242 | 187 | __attribute__noreturn__ |
255164ba DM |
188 | __attribute__format__(__printf__,pTHX_1,pTHX_2) |
189 | __attribute__nonnull__(pTHX_1); | |
f54cb97a AL |
190 | |
191 | PERL_CALLCONV void Perl_vcroak(pTHX_ const char* pat, va_list* args) | |
255164ba DM |
192 | __attribute__noreturn__ |
193 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 194 | |
cea2e8a9 | 195 | #if defined(PERL_IMPLICIT_CONTEXT) |
f54cb97a | 196 | PERL_CALLCONV void Perl_croak_nocontext(const char* pat, ...) |
abb2c242 | 197 | __attribute__noreturn__ |
255164ba DM |
198 | __attribute__format__(__printf__,1,2) |
199 | __attribute__nonnull__(1); | |
f54cb97a | 200 | |
894356b3 | 201 | PERL_CALLCONV OP* Perl_die_nocontext(const char* pat, ...) |
255164ba DM |
202 | __attribute__format__(__printf__,1,2) |
203 | __attribute__nonnull__(1); | |
f54cb97a | 204 | |
894356b3 | 205 | PERL_CALLCONV void Perl_deb_nocontext(const char* pat, ...) |
255164ba DM |
206 | __attribute__format__(__printf__,1,2) |
207 | __attribute__nonnull__(1); | |
f54cb97a | 208 | |
894356b3 | 209 | PERL_CALLCONV char* Perl_form_nocontext(const char* pat, ...) |
255164ba DM |
210 | __attribute__format__(__printf__,1,2) |
211 | __attribute__nonnull__(1); | |
212 | ||
213 | PERL_CALLCONV void Perl_load_module_nocontext(U32 flags, SV* name, SV* ver, ...) | |
214 | __attribute__nonnull__(2) | |
215 | __attribute__nonnull__(3); | |
f54cb97a | 216 | |
894356b3 | 217 | PERL_CALLCONV SV* Perl_mess_nocontext(const char* pat, ...) |
255164ba DM |
218 | __attribute__format__(__printf__,1,2) |
219 | __attribute__nonnull__(1); | |
f54cb97a | 220 | |
894356b3 | 221 | PERL_CALLCONV void Perl_warn_nocontext(const char* pat, ...) |
255164ba DM |
222 | __attribute__format__(__printf__,1,2) |
223 | __attribute__nonnull__(1); | |
f54cb97a | 224 | |
894356b3 | 225 | PERL_CALLCONV void Perl_warner_nocontext(U32 err, const char* pat, ...) |
255164ba DM |
226 | __attribute__format__(__printf__,2,3) |
227 | __attribute__nonnull__(2); | |
f54cb97a | 228 | |
894356b3 | 229 | PERL_CALLCONV SV* Perl_newSVpvf_nocontext(const char* pat, ...) |
255164ba DM |
230 | __attribute__format__(__printf__,1,2) |
231 | __attribute__nonnull__(1); | |
f54cb97a | 232 | |
894356b3 | 233 | PERL_CALLCONV void Perl_sv_catpvf_nocontext(SV* sv, const char* pat, ...) |
255164ba DM |
234 | __attribute__format__(__printf__,2,3) |
235 | __attribute__nonnull__(1); | |
f54cb97a | 236 | |
894356b3 | 237 | PERL_CALLCONV void Perl_sv_setpvf_nocontext(SV* sv, const char* pat, ...) |
255164ba DM |
238 | __attribute__format__(__printf__,2,3) |
239 | __attribute__nonnull__(1); | |
f54cb97a | 240 | |
894356b3 | 241 | PERL_CALLCONV void Perl_sv_catpvf_mg_nocontext(SV* sv, const char* pat, ...) |
255164ba DM |
242 | __attribute__format__(__printf__,2,3) |
243 | __attribute__nonnull__(1); | |
f54cb97a | 244 | |
894356b3 | 245 | PERL_CALLCONV void Perl_sv_setpvf_mg_nocontext(SV* sv, const char* pat, ...) |
255164ba DM |
246 | __attribute__format__(__printf__,2,3) |
247 | __attribute__nonnull__(1); | |
f54cb97a | 248 | |
894356b3 | 249 | PERL_CALLCONV int Perl_fprintf_nocontext(PerlIO* stream, const char* fmt, ...) |
255164ba DM |
250 | __attribute__format__(__printf__,2,3) |
251 | __attribute__nonnull__(1) | |
252 | __attribute__nonnull__(2); | |
f54cb97a | 253 | |
b0316773 | 254 | PERL_CALLCONV int Perl_printf_nocontext(const char* fmt, ...) |
255164ba DM |
255 | __attribute__format__(__printf__,1,2) |
256 | __attribute__nonnull__(1); | |
f54cb97a | 257 | |
0cb96387 | 258 | #endif |
a3b680e6 | 259 | PERL_CALLCONV void Perl_cv_ckproto(pTHX_ const CV* cv, const GV* gv, const char* p) |
abb2c242 | 260 | __attribute__nonnull__(pTHX_1); |
a3b680e6 | 261 | |
4373e329 | 262 | PERL_CALLCONV CV* Perl_cv_clone(pTHX_ CV* proto) |
abb2c242 | 263 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 264 | |
255164ba DM |
265 | PERL_CALLCONV SV* Perl_cv_const_sv(pTHX_ CV* cv) |
266 | __attribute__warn_unused_result__; | |
267 | ||
268 | PERL_CALLCONV SV* Perl_op_const_sv(pTHX_ const OP* o, CV* cv) | |
269 | __attribute__warn_unused_result__; | |
270 | ||
271 | PERL_CALLCONV void Perl_cv_undef(pTHX_ CV* cv) | |
272 | __attribute__nonnull__(pTHX_1); | |
273 | ||
274 | PERL_CALLCONV void Perl_cx_dump(pTHX_ PERL_CONTEXT* cx) | |
275 | __attribute__nonnull__(pTHX_1); | |
276 | ||
1d7c1841 | 277 | PERL_CALLCONV SV* Perl_filter_add(pTHX_ filter_t funcp, SV* datasv); |
255164ba DM |
278 | PERL_CALLCONV void Perl_filter_del(pTHX_ filter_t funcp) |
279 | __attribute__nonnull__(pTHX_1); | |
280 | ||
281 | PERL_CALLCONV I32 Perl_filter_read(pTHX_ int idx, SV* buffer, int maxlen) | |
282 | __attribute__warn_unused_result__ | |
283 | __attribute__nonnull__(pTHX_2); | |
284 | ||
4373e329 | 285 | PERL_CALLCONV char** Perl_get_op_descs(pTHX) |
abb2c242 JH |
286 | __attribute__warn_unused_result__ |
287 | __attribute__pure__; | |
f54cb97a | 288 | |
4373e329 | 289 | PERL_CALLCONV char** Perl_get_op_names(pTHX) |
abb2c242 JH |
290 | __attribute__warn_unused_result__ |
291 | __attribute__pure__; | |
f54cb97a | 292 | |
4373e329 | 293 | PERL_CALLCONV const char* Perl_get_no_modify(pTHX) |
abb2c242 JH |
294 | __attribute__warn_unused_result__ |
295 | __attribute__pure__; | |
f54cb97a | 296 | |
4373e329 | 297 | PERL_CALLCONV U32* Perl_get_opargs(pTHX) |
abb2c242 JH |
298 | __attribute__warn_unused_result__ |
299 | __attribute__pure__; | |
f54cb97a | 300 | |
4373e329 | 301 | PERL_CALLCONV PPADDR_t* Perl_get_ppaddr(pTHX) |
abb2c242 JH |
302 | __attribute__warn_unused_result__ |
303 | __attribute__pure__; | |
f54cb97a | 304 | |
a3b680e6 | 305 | PERL_CALLCONV I32 Perl_cxinc(pTHX) |
abb2c242 | 306 | __attribute__warn_unused_result__; |
a3b680e6 | 307 | |
894356b3 | 308 | PERL_CALLCONV void Perl_deb(pTHX_ const char* pat, ...) |
255164ba DM |
309 | __attribute__format__(__printf__,pTHX_1,pTHX_2) |
310 | __attribute__nonnull__(pTHX_1); | |
311 | ||
312 | PERL_CALLCONV void Perl_vdeb(pTHX_ const char* pat, va_list* args) | |
313 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 314 | |
1d7c1841 | 315 | PERL_CALLCONV void Perl_debprofdump(pTHX); |
4373e329 | 316 | PERL_CALLCONV I32 Perl_debop(pTHX_ const OP* o) |
abb2c242 | 317 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 318 | |
1d7c1841 GS |
319 | PERL_CALLCONV I32 Perl_debstack(pTHX); |
320 | PERL_CALLCONV I32 Perl_debstackptrs(pTHX); | |
4373e329 | 321 | PERL_CALLCONV char* Perl_delimcpy(pTHX_ char* to, const char* toend, const char* from, const char* fromend, int delim, I32* retlen) |
abb2c242 JH |
322 | __attribute__nonnull__(pTHX_1) |
323 | __attribute__nonnull__(pTHX_2) | |
324 | __attribute__nonnull__(pTHX_3) | |
325 | __attribute__nonnull__(pTHX_4) | |
326 | __attribute__nonnull__(pTHX_6); | |
f54cb97a | 327 | |
4373e329 | 328 | PERL_CALLCONV void Perl_deprecate(pTHX_ const char* s) |
abb2c242 | 329 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 330 | |
4373e329 | 331 | PERL_CALLCONV void Perl_deprecate_old(pTHX_ const char* s) |
abb2c242 | 332 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 333 | |
894356b3 | 334 | PERL_CALLCONV OP* Perl_die(pTHX_ const char* pat, ...) |
255164ba DM |
335 | __attribute__format__(__printf__,pTHX_1,pTHX_2) |
336 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 337 | |
1d7c1841 | 338 | PERL_CALLCONV OP* Perl_vdie(pTHX_ const char* pat, va_list* args); |
255164ba DM |
339 | PERL_CALLCONV OP* Perl_die_where(pTHX_ const char* message, STRLEN msglen) |
340 | __attribute__nonnull__(pTHX_1); | |
341 | ||
1d7c1841 | 342 | PERL_CALLCONV void Perl_dounwind(pTHX_ I32 cxix); |
255164ba DM |
343 | PERL_CALLCONV bool Perl_do_aexec(pTHX_ SV* really, SV** mark, SV** sp) |
344 | __attribute__nonnull__(pTHX_2) | |
345 | __attribute__nonnull__(pTHX_3); | |
346 | ||
347 | PERL_CALLCONV bool Perl_do_aexec5(pTHX_ SV* really, SV** mark, SV** sp, int fd, int flag) | |
348 | __attribute__nonnull__(pTHX_2) | |
349 | __attribute__nonnull__(pTHX_3); | |
350 | ||
4373e329 | 351 | PERL_CALLCONV int Perl_do_binmode(pTHX_ PerlIO *fp, int iotype, int mode) |
abb2c242 | 352 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 353 | |
4373e329 | 354 | PERL_CALLCONV void Perl_do_chop(pTHX_ SV* asv, SV* sv) |
abb2c242 JH |
355 | __attribute__nonnull__(pTHX_1) |
356 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 357 | |
4373e329 | 358 | PERL_CALLCONV bool Perl_do_close(pTHX_ GV* gv, bool not_implicit) |
abb2c242 | 359 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 360 | |
4373e329 | 361 | PERL_CALLCONV bool Perl_do_eof(pTHX_ GV* gv) |
abb2c242 | 362 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 363 | |
4373e329 | 364 | PERL_CALLCONV bool Perl_do_exec(pTHX_ char* cmd) |
abb2c242 | 365 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 366 | |
27da23d5 | 367 | #if defined(WIN32) || defined(SYMBIAN) |
255164ba DM |
368 | PERL_CALLCONV int Perl_do_aspawn(pTHX_ SV* really, SV** mark, SV** sp) |
369 | __attribute__nonnull__(pTHX_1) | |
370 | __attribute__nonnull__(pTHX_2) | |
371 | __attribute__nonnull__(pTHX_3); | |
372 | ||
373 | PERL_CALLCONV int Perl_do_spawn(pTHX_ char* cmd) | |
374 | __attribute__nonnull__(pTHX_1); | |
375 | ||
376 | PERL_CALLCONV int Perl_do_spawn_nowait(pTHX_ char* cmd) | |
377 | __attribute__nonnull__(pTHX_1); | |
378 | ||
54725af6 | 379 | #endif |
864dbfa3 | 380 | #if !defined(WIN32) |
255164ba DM |
381 | PERL_CALLCONV bool Perl_do_exec3(pTHX_ char* cmd, int fd, int flag) |
382 | __attribute__nonnull__(pTHX_1); | |
383 | ||
864dbfa3 | 384 | #endif |
1d7c1841 | 385 | PERL_CALLCONV void Perl_do_execfree(pTHX); |
864dbfa3 | 386 | #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM) |
1d7c1841 GS |
387 | PERL_CALLCONV I32 Perl_do_ipcctl(pTHX_ I32 optype, SV** mark, SV** sp); |
388 | PERL_CALLCONV I32 Perl_do_ipcget(pTHX_ I32 optype, SV** mark, SV** sp); | |
389 | PERL_CALLCONV I32 Perl_do_msgrcv(pTHX_ SV** mark, SV** sp); | |
390 | PERL_CALLCONV I32 Perl_do_msgsnd(pTHX_ SV** mark, SV** sp); | |
391 | PERL_CALLCONV I32 Perl_do_semop(pTHX_ SV** mark, SV** sp); | |
392 | PERL_CALLCONV I32 Perl_do_shmio(pTHX_ I32 optype, SV** mark, SV** sp); | |
0cb96387 | 393 | #endif |
f54cb97a | 394 | PERL_CALLCONV void Perl_do_join(pTHX_ SV* sv, SV* del, SV** mark, SV** sp) |
abb2c242 JH |
395 | __attribute__nonnull__(pTHX_1) |
396 | __attribute__nonnull__(pTHX_2) | |
397 | __attribute__nonnull__(pTHX_3) | |
398 | __attribute__nonnull__(pTHX_4); | |
f54cb97a | 399 | |
1d7c1841 | 400 | PERL_CALLCONV OP* Perl_do_kv(pTHX); |
255164ba DM |
401 | PERL_CALLCONV bool Perl_do_open(pTHX_ GV* gv, char* name, I32 len, int as_raw, int rawmode, int rawperm, PerlIO* supplied_fp) |
402 | __attribute__nonnull__(pTHX_1) | |
403 | __attribute__nonnull__(pTHX_2); | |
404 | ||
405 | PERL_CALLCONV bool Perl_do_open9(pTHX_ GV *gv, char *name, I32 len, int as_raw, int rawmode, int rawperm, PerlIO *supplied_fp, SV *svs, I32 num) | |
406 | __attribute__nonnull__(pTHX_1) | |
407 | __attribute__nonnull__(pTHX_2) | |
408 | __attribute__nonnull__(pTHX_8); | |
409 | ||
410 | PERL_CALLCONV bool Perl_do_openn(pTHX_ GV *gv, char *name, I32 len, int as_raw, int rawmode, int rawperm, PerlIO *supplied_fp, SV **svp, I32 num) | |
411 | __attribute__nonnull__(pTHX_1) | |
412 | __attribute__nonnull__(pTHX_2); | |
413 | ||
414 | PERL_CALLCONV void Perl_do_pipe(pTHX_ SV* sv, GV* rgv, GV* wgv) | |
415 | __attribute__nonnull__(pTHX_1); | |
416 | ||
417 | PERL_CALLCONV bool Perl_do_print(pTHX_ SV* sv, PerlIO* fp) | |
418 | __attribute__nonnull__(pTHX_2); | |
419 | ||
420 | PERL_CALLCONV OP* Perl_do_readline(pTHX) | |
421 | __attribute__warn_unused_result__; | |
422 | ||
423 | PERL_CALLCONV I32 Perl_do_chomp(pTHX_ SV* sv) | |
424 | __attribute__nonnull__(pTHX_1); | |
425 | ||
1d7c1841 | 426 | PERL_CALLCONV bool Perl_do_seek(pTHX_ GV* gv, Off_t pos, int whence); |
255164ba DM |
427 | PERL_CALLCONV void Perl_do_sprintf(pTHX_ SV* sv, I32 len, SV** sarg) |
428 | __attribute__nonnull__(pTHX_1) | |
429 | __attribute__nonnull__(pTHX_3); | |
430 | ||
431 | PERL_CALLCONV Off_t Perl_do_sysseek(pTHX_ GV* gv, Off_t pos, int whence) | |
432 | __attribute__nonnull__(pTHX_1); | |
433 | ||
434 | PERL_CALLCONV Off_t Perl_do_tell(pTHX_ GV* gv) | |
435 | __attribute__warn_unused_result__ | |
436 | __attribute__nonnull__(pTHX_1); | |
437 | ||
438 | PERL_CALLCONV I32 Perl_do_trans(pTHX_ SV* sv) | |
439 | __attribute__nonnull__(pTHX_1); | |
440 | ||
4373e329 | 441 | PERL_CALLCONV UV Perl_do_vecget(pTHX_ SV* sv, I32 offset, I32 size) |
abb2c242 | 442 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 443 | |
4373e329 | 444 | PERL_CALLCONV void Perl_do_vecset(pTHX_ SV* sv) |
abb2c242 | 445 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 446 | |
255164ba DM |
447 | PERL_CALLCONV void Perl_do_vop(pTHX_ I32 optype, SV* sv, SV* left, SV* right) |
448 | __attribute__nonnull__(pTHX_2) | |
449 | __attribute__nonnull__(pTHX_3) | |
450 | __attribute__nonnull__(pTHX_4); | |
451 | ||
452 | PERL_CALLCONV OP* Perl_dofile(pTHX_ OP* term) | |
453 | __attribute__nonnull__(pTHX_1); | |
454 | ||
455 | PERL_CALLCONV I32 Perl_dowantarray(pTHX) | |
456 | __attribute__warn_unused_result__; | |
457 | ||
1d7c1841 GS |
458 | PERL_CALLCONV void Perl_dump_all(pTHX); |
459 | PERL_CALLCONV void Perl_dump_eval(pTHX); | |
864dbfa3 | 460 | #if defined(DUMP_FDS) |
1d7c1841 | 461 | PERL_CALLCONV void Perl_dump_fds(pTHX_ char* s); |
0cb96387 | 462 | #endif |
e1ec3a88 | 463 | PERL_CALLCONV void Perl_dump_form(pTHX_ const GV* gv); |
255164ba DM |
464 | PERL_CALLCONV void Perl_gv_dump(pTHX_ GV* gv) |
465 | __attribute__nonnull__(pTHX_1); | |
466 | ||
467 | PERL_CALLCONV void Perl_op_dump(pTHX_ const OP* arg) | |
468 | __attribute__nonnull__(pTHX_1); | |
469 | ||
1d7c1841 | 470 | PERL_CALLCONV void Perl_pmop_dump(pTHX_ PMOP* pm); |
e1ec3a88 | 471 | PERL_CALLCONV void Perl_dump_packsubs(pTHX_ const HV* stash); |
f54cb97a | 472 | PERL_CALLCONV void Perl_dump_sub(pTHX_ const GV* gv) |
abb2c242 | 473 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 474 | |
255164ba DM |
475 | PERL_CALLCONV void Perl_fbm_compile(pTHX_ SV* sv, U32 flags) |
476 | __attribute__nonnull__(pTHX_1); | |
477 | ||
478 | PERL_CALLCONV char* Perl_fbm_instr(pTHX_ unsigned char* big, unsigned char* bigend, SV* littlesv, U32 flags) | |
479 | __attribute__warn_unused_result__ | |
480 | __attribute__nonnull__(pTHX_1) | |
481 | __attribute__nonnull__(pTHX_2) | |
482 | __attribute__nonnull__(pTHX_3); | |
483 | ||
e1ec3a88 | 484 | PERL_CALLCONV char* Perl_find_script(pTHX_ const char *scriptname, bool dosearch, const char **search_ext, I32 flags); |
4373e329 | 485 | PERL_CALLCONV OP* Perl_force_list(pTHX_ OP* arg) |
abb2c242 | 486 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 487 | |
4373e329 | 488 | PERL_CALLCONV OP* Perl_fold_constants(pTHX_ OP* arg) |
abb2c242 | 489 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 490 | |
894356b3 | 491 | PERL_CALLCONV char* Perl_form(pTHX_ const char* pat, ...) |
aec46f14 AL |
492 | __attribute__format__(__printf__,pTHX_1,pTHX_2) |
493 | __attribute__nonnull__(pTHX_1); | |
494 | ||
495 | PERL_CALLCONV char* Perl_vform(pTHX_ const char* pat, va_list* args) | |
496 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 497 | |
1d7c1841 GS |
498 | PERL_CALLCONV void Perl_free_tmps(pTHX); |
499 | PERL_CALLCONV OP* Perl_gen_constant_list(pTHX_ OP* o); | |
864dbfa3 | 500 | #if !defined(HAS_GETENV_LEN) |
8772537c AL |
501 | PERL_CALLCONV char* Perl_getenv_len(pTHX_ const char* key, unsigned long *len) |
502 | __attribute__nonnull__(pTHX_1) | |
503 | __attribute__nonnull__(pTHX_2); | |
504 | ||
0cb96387 | 505 | #endif |
1d7c1841 GS |
506 | PERL_CALLCONV void Perl_gp_free(pTHX_ GV* gv); |
507 | PERL_CALLCONV GP* Perl_gp_ref(pTHX_ GP* gp); | |
53c1dcc0 AL |
508 | PERL_CALLCONV GV* Perl_gv_AVadd(pTHX_ GV* gv) |
509 | __attribute__nonnull__(pTHX_1); | |
510 | ||
511 | PERL_CALLCONV GV* Perl_gv_HVadd(pTHX_ GV* gv) | |
512 | __attribute__nonnull__(pTHX_1); | |
513 | ||
514 | PERL_CALLCONV GV* Perl_gv_IOadd(pTHX_ GV* gv) | |
515 | __attribute__nonnull__(pTHX_1); | |
516 | ||
a28509cc AL |
517 | PERL_CALLCONV GV* Perl_gv_autoload4(pTHX_ HV* stash, const char* name, STRLEN len, I32 method) |
518 | __attribute__warn_unused_result__ | |
519 | __attribute__nonnull__(pTHX_2); | |
520 | ||
46c461b5 AL |
521 | PERL_CALLCONV void Perl_gv_check(pTHX_ HV* stash) |
522 | __attribute__nonnull__(pTHX_1); | |
523 | ||
524 | PERL_CALLCONV void Perl_gv_efullname(pTHX_ SV* sv, const GV* gv) | |
525 | __attribute__nonnull__(pTHX_1) | |
526 | __attribute__nonnull__(pTHX_2); | |
527 | ||
528 | /* PERL_CALLCONV void Perl_gv_efullname3(pTHX_ SV* sv, const GV* gv, const char* prefix) | |
529 | __attribute__nonnull__(pTHX_1) | |
530 | __attribute__nonnull__(pTHX_2); */ | |
531 | ||
532 | PERL_CALLCONV void Perl_gv_efullname4(pTHX_ SV* sv, const GV* gv, const char* prefix, bool keepmain) | |
533 | __attribute__nonnull__(pTHX_1) | |
534 | __attribute__nonnull__(pTHX_2); | |
535 | ||
53c1dcc0 AL |
536 | PERL_CALLCONV GV* Perl_gv_fetchfile(pTHX_ const char* name) |
537 | __attribute__nonnull__(pTHX_1); | |
538 | ||
1d7c1841 | 539 | PERL_CALLCONV GV* Perl_gv_fetchmeth(pTHX_ HV* stash, const char* name, STRLEN len, I32 level); |
2d8263b8 | 540 | PERL_CALLCONV GV* Perl_gv_fetchmeth_autoload(pTHX_ HV* stash, const char* name, STRLEN len, I32 level); |
1d7c1841 GS |
541 | PERL_CALLCONV GV* Perl_gv_fetchmethod(pTHX_ HV* stash, const char* name); |
542 | PERL_CALLCONV GV* Perl_gv_fetchmethod_autoload(pTHX_ HV* stash, const char* name, I32 autoload); | |
543 | PERL_CALLCONV GV* Perl_gv_fetchpv(pTHX_ const char* name, I32 add, I32 sv_type); | |
35a4481c | 544 | PERL_CALLCONV void Perl_gv_fullname(pTHX_ SV* sv, const GV* gv); |
27da23d5 | 545 | /* PERL_CALLCONV void Perl_gv_fullname3(pTHX_ SV* sv, const GV* gv, const char* prefix); */ |
35a4481c | 546 | PERL_CALLCONV void Perl_gv_fullname4(pTHX_ SV* sv, const GV* gv, const char* prefix, bool keepmain); |
53c1dcc0 AL |
547 | PERL_CALLCONV void Perl_gv_init(pTHX_ GV* gv, HV* stash, const char* name, STRLEN len, int multi) |
548 | __attribute__nonnull__(pTHX_1) | |
53c1dcc0 AL |
549 | __attribute__nonnull__(pTHX_3); |
550 | ||
1d7c1841 GS |
551 | PERL_CALLCONV HV* Perl_gv_stashpv(pTHX_ const char* name, I32 create); |
552 | PERL_CALLCONV HV* Perl_gv_stashpvn(pTHX_ const char* name, U32 namelen, I32 create); | |
553 | PERL_CALLCONV HV* Perl_gv_stashsv(pTHX_ SV* sv, I32 create); | |
554 | PERL_CALLCONV void Perl_hv_clear(pTHX_ HV* tb); | |
555 | PERL_CALLCONV void Perl_hv_delayfree_ent(pTHX_ HV* hv, HE* entry); | |
da58a35d | 556 | PERL_CALLCONV SV* Perl_hv_delete(pTHX_ HV* tb, const char* key, I32 klen, I32 flags); |
1d7c1841 | 557 | PERL_CALLCONV SV* Perl_hv_delete_ent(pTHX_ HV* tb, SV* key, I32 flags, U32 hash); |
901017d6 AL |
558 | PERL_CALLCONV bool Perl_hv_exists(pTHX_ HV* tb, const char* key, I32 klen) |
559 | __attribute__warn_unused_result__; | |
560 | ||
561 | PERL_CALLCONV bool Perl_hv_exists_ent(pTHX_ HV* tb, SV* key, U32 hash) | |
562 | __attribute__warn_unused_result__; | |
563 | ||
da58a35d | 564 | PERL_CALLCONV SV** Perl_hv_fetch(pTHX_ HV* tb, const char* key, I32 klen, I32 lval); |
1d7c1841 | 565 | PERL_CALLCONV HE* Perl_hv_fetch_ent(pTHX_ HV* tb, SV* key, I32 lval, U32 hash); |
a3b680e6 | 566 | PERL_CALLCONV void Perl_hv_free_ent(pTHX_ HV* hv, HE* entry) |
abb2c242 | 567 | __attribute__nonnull__(pTHX_1); |
a3b680e6 AL |
568 | |
569 | PERL_CALLCONV I32 Perl_hv_iterinit(pTHX_ HV* tb) | |
abb2c242 | 570 | __attribute__nonnull__(pTHX_1); |
a3b680e6 AL |
571 | |
572 | PERL_CALLCONV char* Perl_hv_iterkey(pTHX_ HE* entry, I32* retlen) | |
abb2c242 JH |
573 | __attribute__warn_unused_result__ |
574 | __attribute__nonnull__(pTHX_1) | |
575 | __attribute__nonnull__(pTHX_2); | |
a3b680e6 AL |
576 | |
577 | PERL_CALLCONV SV* Perl_hv_iterkeysv(pTHX_ HE* entry) | |
abb2c242 JH |
578 | __attribute__warn_unused_result__ |
579 | __attribute__nonnull__(pTHX_1); | |
a3b680e6 AL |
580 | |
581 | PERL_CALLCONV HE* Perl_hv_iternext(pTHX_ HV* tb) | |
abb2c242 JH |
582 | __attribute__warn_unused_result__ |
583 | __attribute__nonnull__(pTHX_1); | |
a3b680e6 AL |
584 | |
585 | PERL_CALLCONV SV* Perl_hv_iternextsv(pTHX_ HV* hv, char** key, I32* retlen) | |
abb2c242 JH |
586 | __attribute__warn_unused_result__ |
587 | __attribute__nonnull__(pTHX_1) | |
588 | __attribute__nonnull__(pTHX_2) | |
589 | __attribute__nonnull__(pTHX_3); | |
a3b680e6 AL |
590 | |
591 | PERL_CALLCONV HE* Perl_hv_iternext_flags(pTHX_ HV* tb, I32 flags) | |
abb2c242 JH |
592 | __attribute__warn_unused_result__ |
593 | __attribute__nonnull__(pTHX_1); | |
a3b680e6 AL |
594 | |
595 | PERL_CALLCONV SV* Perl_hv_iterval(pTHX_ HV* tb, HE* entry) | |
abb2c242 JH |
596 | __attribute__warn_unused_result__ |
597 | __attribute__nonnull__(pTHX_1) | |
598 | __attribute__nonnull__(pTHX_2); | |
a3b680e6 AL |
599 | |
600 | PERL_CALLCONV void Perl_hv_ksplit(pTHX_ HV* hv, IV newmax) | |
abb2c242 | 601 | __attribute__nonnull__(pTHX_1); |
a3b680e6 | 602 | |
1d7c1841 | 603 | PERL_CALLCONV void Perl_hv_magic(pTHX_ HV* hv, GV* gv, int how); |
da58a35d | 604 | PERL_CALLCONV SV** Perl_hv_store(pTHX_ HV* tb, const char* key, I32 klen, SV* val, U32 hash); |
1d7c1841 | 605 | PERL_CALLCONV HE* Perl_hv_store_ent(pTHX_ HV* tb, SV* key, SV* val, U32 hash); |
e16e2ff8 | 606 | PERL_CALLCONV SV** Perl_hv_store_flags(pTHX_ HV* tb, const char* key, I32 klen, SV* val, U32 hash, int flags); |
1d7c1841 | 607 | PERL_CALLCONV void Perl_hv_undef(pTHX_ HV* tb); |
4373e329 | 608 | PERL_CALLCONV I32 Perl_ibcmp(pTHX_ const char* a, const char* b, I32 len) |
abb2c242 JH |
609 | __attribute__pure__ |
610 | __attribute__nonnull__(pTHX_1) | |
611 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 612 | |
4373e329 | 613 | PERL_CALLCONV I32 Perl_ibcmp_locale(pTHX_ const char* a, const char* b, I32 len) |
abb2c242 JH |
614 | __attribute__pure__ |
615 | __attribute__nonnull__(pTHX_1) | |
616 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 617 | |
4373e329 | 618 | PERL_CALLCONV I32 Perl_ibcmp_utf8(pTHX_ const char* a, char **pe1, UV l1, bool u1, const char* b, char **pe2, UV l2, bool u2) |
abb2c242 JH |
619 | __attribute__nonnull__(pTHX_1) |
620 | __attribute__nonnull__(pTHX_5); | |
f54cb97a AL |
621 | |
622 | PERL_CALLCONV bool Perl_ingroup(pTHX_ Gid_t testgid, Uid_t effective) | |
abb2c242 | 623 | __attribute__warn_unused_result__; |
f54cb97a | 624 | |
4373e329 | 625 | PERL_CALLCONV void Perl_init_argv_symbols(pTHX_ int argc, char **argv) |
abb2c242 | 626 | __attribute__nonnull__(pTHX_2); |
f54cb97a | 627 | |
1d7c1841 GS |
628 | PERL_CALLCONV void Perl_init_debugger(pTHX); |
629 | PERL_CALLCONV void Perl_init_stacks(pTHX); | |
e72cf795 | 630 | PERL_CALLCONV void Perl_init_tm(pTHX_ struct tm *ptm); |
1d7c1841 | 631 | PERL_CALLCONV U32 Perl_intro_my(pTHX); |
4373e329 | 632 | PERL_CALLCONV char* Perl_instr(pTHX_ const char* big, const char* little) |
b464bac0 | 633 | __attribute__warn_unused_result__ |
abb2c242 JH |
634 | __attribute__pure__ |
635 | __attribute__nonnull__(pTHX_1) | |
636 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 637 | |
b464bac0 AL |
638 | PERL_CALLCONV bool Perl_io_close(pTHX_ IO* io, bool not_implicit) |
639 | __attribute__warn_unused_result__ | |
640 | __attribute__nonnull__(pTHX_1); | |
641 | ||
642 | PERL_CALLCONV OP* Perl_invert(pTHX_ OP* cmd) | |
643 | __attribute__warn_unused_result__; | |
644 | ||
f54cb97a | 645 | PERL_CALLCONV bool Perl_is_gv_magical(pTHX_ const char *name, STRLEN len, U32 flags) |
9d4ba2ae AL |
646 | __attribute__warn_unused_result__ |
647 | __attribute__nonnull__(pTHX_1); | |
f54cb97a AL |
648 | |
649 | PERL_CALLCONV I32 Perl_is_lvalue_sub(pTHX) | |
abb2c242 | 650 | __attribute__warn_unused_result__; |
f54cb97a AL |
651 | |
652 | PERL_CALLCONV U32 Perl_to_uni_upper_lc(pTHX_ U32 c) | |
abb2c242 JH |
653 | __attribute__warn_unused_result__ |
654 | __attribute__pure__; | |
f54cb97a AL |
655 | |
656 | PERL_CALLCONV U32 Perl_to_uni_title_lc(pTHX_ U32 c) | |
abb2c242 JH |
657 | __attribute__warn_unused_result__ |
658 | __attribute__pure__; | |
f54cb97a AL |
659 | |
660 | PERL_CALLCONV U32 Perl_to_uni_lower_lc(pTHX_ U32 c) | |
abb2c242 JH |
661 | __attribute__warn_unused_result__ |
662 | __attribute__pure__; | |
f54cb97a AL |
663 | |
664 | PERL_CALLCONV bool Perl_is_uni_alnum(pTHX_ UV c) | |
abb2c242 JH |
665 | __attribute__warn_unused_result__ |
666 | __attribute__pure__; | |
f54cb97a AL |
667 | |
668 | PERL_CALLCONV bool Perl_is_uni_alnumc(pTHX_ UV c) | |
abb2c242 JH |
669 | __attribute__warn_unused_result__ |
670 | __attribute__pure__; | |
f54cb97a AL |
671 | |
672 | PERL_CALLCONV bool Perl_is_uni_idfirst(pTHX_ UV c) | |
abb2c242 JH |
673 | __attribute__warn_unused_result__ |
674 | __attribute__pure__; | |
f54cb97a AL |
675 | |
676 | PERL_CALLCONV bool Perl_is_uni_alpha(pTHX_ UV c) | |
abb2c242 JH |
677 | __attribute__warn_unused_result__ |
678 | __attribute__pure__; | |
f54cb97a AL |
679 | |
680 | PERL_CALLCONV bool Perl_is_uni_ascii(pTHX_ UV c) | |
abb2c242 JH |
681 | __attribute__warn_unused_result__ |
682 | __attribute__pure__; | |
f54cb97a AL |
683 | |
684 | PERL_CALLCONV bool Perl_is_uni_space(pTHX_ UV c) | |
abb2c242 JH |
685 | __attribute__warn_unused_result__ |
686 | __attribute__pure__; | |
f54cb97a AL |
687 | |
688 | PERL_CALLCONV bool Perl_is_uni_cntrl(pTHX_ UV c) | |
abb2c242 JH |
689 | __attribute__warn_unused_result__ |
690 | __attribute__pure__; | |
f54cb97a AL |
691 | |
692 | PERL_CALLCONV bool Perl_is_uni_graph(pTHX_ UV c) | |
abb2c242 JH |
693 | __attribute__warn_unused_result__ |
694 | __attribute__pure__; | |
f54cb97a AL |
695 | |
696 | PERL_CALLCONV bool Perl_is_uni_digit(pTHX_ UV c) | |
abb2c242 JH |
697 | __attribute__warn_unused_result__ |
698 | __attribute__pure__; | |
f54cb97a AL |
699 | |
700 | PERL_CALLCONV bool Perl_is_uni_upper(pTHX_ UV c) | |
abb2c242 JH |
701 | __attribute__warn_unused_result__ |
702 | __attribute__pure__; | |
f54cb97a AL |
703 | |
704 | PERL_CALLCONV bool Perl_is_uni_lower(pTHX_ UV c) | |
abb2c242 JH |
705 | __attribute__warn_unused_result__ |
706 | __attribute__pure__; | |
f54cb97a AL |
707 | |
708 | PERL_CALLCONV bool Perl_is_uni_print(pTHX_ UV c) | |
abb2c242 JH |
709 | __attribute__warn_unused_result__ |
710 | __attribute__pure__; | |
f54cb97a AL |
711 | |
712 | PERL_CALLCONV bool Perl_is_uni_punct(pTHX_ UV c) | |
abb2c242 JH |
713 | __attribute__warn_unused_result__ |
714 | __attribute__pure__; | |
f54cb97a AL |
715 | |
716 | PERL_CALLCONV bool Perl_is_uni_xdigit(pTHX_ UV c) | |
abb2c242 JH |
717 | __attribute__warn_unused_result__ |
718 | __attribute__pure__; | |
f54cb97a | 719 | |
4373e329 | 720 | PERL_CALLCONV UV Perl_to_uni_upper(pTHX_ UV c, U8 *p, STRLEN *lenp) |
abb2c242 JH |
721 | __attribute__nonnull__(pTHX_2) |
722 | __attribute__nonnull__(pTHX_3); | |
f54cb97a | 723 | |
4373e329 | 724 | PERL_CALLCONV UV Perl_to_uni_title(pTHX_ UV c, U8 *p, STRLEN *lenp) |
abb2c242 JH |
725 | __attribute__nonnull__(pTHX_2) |
726 | __attribute__nonnull__(pTHX_3); | |
f54cb97a | 727 | |
4373e329 | 728 | PERL_CALLCONV UV Perl_to_uni_lower(pTHX_ UV c, U8 *p, STRLEN *lenp) |
abb2c242 JH |
729 | __attribute__nonnull__(pTHX_2) |
730 | __attribute__nonnull__(pTHX_3); | |
f54cb97a | 731 | |
4373e329 | 732 | PERL_CALLCONV UV Perl_to_uni_fold(pTHX_ UV c, U8 *p, STRLEN *lenp) |
abb2c242 JH |
733 | __attribute__nonnull__(pTHX_2) |
734 | __attribute__nonnull__(pTHX_3); | |
f54cb97a AL |
735 | |
736 | PERL_CALLCONV bool Perl_is_uni_alnum_lc(pTHX_ UV c) | |
abb2c242 JH |
737 | __attribute__warn_unused_result__ |
738 | __attribute__pure__; | |
f54cb97a AL |
739 | |
740 | PERL_CALLCONV bool Perl_is_uni_alnumc_lc(pTHX_ UV c) | |
abb2c242 JH |
741 | __attribute__warn_unused_result__ |
742 | __attribute__pure__; | |
f54cb97a AL |
743 | |
744 | PERL_CALLCONV bool Perl_is_uni_idfirst_lc(pTHX_ UV c) | |
abb2c242 JH |
745 | __attribute__warn_unused_result__ |
746 | __attribute__pure__; | |
f54cb97a AL |
747 | |
748 | PERL_CALLCONV bool Perl_is_uni_alpha_lc(pTHX_ UV c) | |
abb2c242 JH |
749 | __attribute__warn_unused_result__ |
750 | __attribute__pure__; | |
f54cb97a AL |
751 | |
752 | PERL_CALLCONV bool Perl_is_uni_ascii_lc(pTHX_ UV c) | |
abb2c242 JH |
753 | __attribute__warn_unused_result__ |
754 | __attribute__pure__; | |
f54cb97a AL |
755 | |
756 | PERL_CALLCONV bool Perl_is_uni_space_lc(pTHX_ UV c) | |
abb2c242 JH |
757 | __attribute__warn_unused_result__ |
758 | __attribute__pure__; | |
f54cb97a AL |
759 | |
760 | PERL_CALLCONV bool Perl_is_uni_cntrl_lc(pTHX_ UV c) | |
abb2c242 JH |
761 | __attribute__warn_unused_result__ |
762 | __attribute__pure__; | |
f54cb97a AL |
763 | |
764 | PERL_CALLCONV bool Perl_is_uni_graph_lc(pTHX_ UV c) | |
abb2c242 JH |
765 | __attribute__warn_unused_result__ |
766 | __attribute__pure__; | |
f54cb97a AL |
767 | |
768 | PERL_CALLCONV bool Perl_is_uni_digit_lc(pTHX_ UV c) | |
abb2c242 JH |
769 | __attribute__warn_unused_result__ |
770 | __attribute__pure__; | |
f54cb97a AL |
771 | |
772 | PERL_CALLCONV bool Perl_is_uni_upper_lc(pTHX_ UV c) | |
abb2c242 JH |
773 | __attribute__warn_unused_result__ |
774 | __attribute__pure__; | |
f54cb97a AL |
775 | |
776 | PERL_CALLCONV bool Perl_is_uni_lower_lc(pTHX_ UV c) | |
abb2c242 JH |
777 | __attribute__warn_unused_result__ |
778 | __attribute__pure__; | |
f54cb97a AL |
779 | |
780 | PERL_CALLCONV bool Perl_is_uni_print_lc(pTHX_ UV c) | |
abb2c242 JH |
781 | __attribute__warn_unused_result__ |
782 | __attribute__pure__; | |
f54cb97a AL |
783 | |
784 | PERL_CALLCONV bool Perl_is_uni_punct_lc(pTHX_ UV c) | |
abb2c242 JH |
785 | __attribute__warn_unused_result__ |
786 | __attribute__pure__; | |
f54cb97a AL |
787 | |
788 | PERL_CALLCONV bool Perl_is_uni_xdigit_lc(pTHX_ UV c) | |
abb2c242 JH |
789 | __attribute__warn_unused_result__ |
790 | __attribute__pure__; | |
f54cb97a | 791 | |
4373e329 | 792 | PERL_CALLCONV STRLEN Perl_is_utf8_char(pTHX_ const U8 *p) |
abb2c242 | 793 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 794 | |
4373e329 | 795 | PERL_CALLCONV bool Perl_is_utf8_string(pTHX_ const U8 *s, STRLEN len) |
abb2c242 | 796 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 797 | |
4373e329 | 798 | PERL_CALLCONV bool Perl_is_utf8_string_loc(pTHX_ const U8 *s, STRLEN len, const U8 **p) |
768c67ee JH |
799 | __attribute__nonnull__(pTHX_1); |
800 | ||
801 | PERL_CALLCONV bool Perl_is_utf8_string_loclen(pTHX_ const U8 *s, STRLEN len, const U8 **ep, STRLEN *el) | |
802 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 803 | |
4373e329 | 804 | PERL_CALLCONV bool Perl_is_utf8_alnum(pTHX_ const U8 *p) |
1df70142 | 805 | __attribute__warn_unused_result__ |
abb2c242 | 806 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 807 | |
4373e329 | 808 | PERL_CALLCONV bool Perl_is_utf8_alnumc(pTHX_ const U8 *p) |
1df70142 | 809 | __attribute__warn_unused_result__ |
abb2c242 | 810 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 811 | |
4373e329 | 812 | PERL_CALLCONV bool Perl_is_utf8_idfirst(pTHX_ const U8 *p) |
1df70142 | 813 | __attribute__warn_unused_result__ |
abb2c242 | 814 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 815 | |
4373e329 | 816 | PERL_CALLCONV bool Perl_is_utf8_idcont(pTHX_ const U8 *p) |
1df70142 | 817 | __attribute__warn_unused_result__ |
abb2c242 | 818 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 819 | |
4373e329 | 820 | PERL_CALLCONV bool Perl_is_utf8_alpha(pTHX_ const U8 *p) |
1df70142 | 821 | __attribute__warn_unused_result__ |
abb2c242 | 822 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 823 | |
4373e329 | 824 | PERL_CALLCONV bool Perl_is_utf8_ascii(pTHX_ const U8 *p) |
1df70142 | 825 | __attribute__warn_unused_result__ |
abb2c242 | 826 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 827 | |
4373e329 | 828 | PERL_CALLCONV bool Perl_is_utf8_space(pTHX_ const U8 *p) |
1df70142 | 829 | __attribute__warn_unused_result__ |
abb2c242 | 830 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 831 | |
4373e329 | 832 | PERL_CALLCONV bool Perl_is_utf8_cntrl(pTHX_ const U8 *p) |
1df70142 | 833 | __attribute__warn_unused_result__ |
abb2c242 | 834 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 835 | |
4373e329 | 836 | PERL_CALLCONV bool Perl_is_utf8_digit(pTHX_ const U8 *p) |
1df70142 | 837 | __attribute__warn_unused_result__ |
abb2c242 | 838 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 839 | |
4373e329 | 840 | PERL_CALLCONV bool Perl_is_utf8_graph(pTHX_ const U8 *p) |
1df70142 | 841 | __attribute__warn_unused_result__ |
abb2c242 | 842 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 843 | |
4373e329 | 844 | PERL_CALLCONV bool Perl_is_utf8_upper(pTHX_ const U8 *p) |
1df70142 | 845 | __attribute__warn_unused_result__ |
abb2c242 | 846 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 847 | |
4373e329 | 848 | PERL_CALLCONV bool Perl_is_utf8_lower(pTHX_ const U8 *p) |
1df70142 | 849 | __attribute__warn_unused_result__ |
abb2c242 | 850 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 851 | |
4373e329 | 852 | PERL_CALLCONV bool Perl_is_utf8_print(pTHX_ const U8 *p) |
1df70142 | 853 | __attribute__warn_unused_result__ |
abb2c242 | 854 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 855 | |
4373e329 | 856 | PERL_CALLCONV bool Perl_is_utf8_punct(pTHX_ const U8 *p) |
1df70142 | 857 | __attribute__warn_unused_result__ |
abb2c242 | 858 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 859 | |
4373e329 | 860 | PERL_CALLCONV bool Perl_is_utf8_xdigit(pTHX_ const U8 *p) |
1df70142 | 861 | __attribute__warn_unused_result__ |
abb2c242 | 862 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 863 | |
4373e329 | 864 | PERL_CALLCONV bool Perl_is_utf8_mark(pTHX_ const U8 *p) |
1df70142 | 865 | __attribute__warn_unused_result__ |
abb2c242 | 866 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 867 | |
4373e329 | 868 | PERL_CALLCONV OP* Perl_jmaybe(pTHX_ OP* arg) |
abb2c242 | 869 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 870 | |
672994ce | 871 | PERL_CALLCONV I32 Perl_keyword(pTHX_ const char* d, I32 len) |
abb2c242 JH |
872 | __attribute__pure__ |
873 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 874 | |
1d7c1841 GS |
875 | PERL_CALLCONV void Perl_leave_scope(pTHX_ I32 base); |
876 | PERL_CALLCONV void Perl_lex_end(pTHX); | |
877 | PERL_CALLCONV void Perl_lex_start(pTHX_ SV* line); | |
aec46f14 AL |
878 | PERL_CALLCONV void Perl_op_null(pTHX_ OP* o) |
879 | __attribute__nonnull__(pTHX_1); | |
880 | ||
881 | PERL_CALLCONV void Perl_op_clear(pTHX_ OP* o) | |
882 | __attribute__nonnull__(pTHX_1); | |
883 | ||
4026c95a SH |
884 | PERL_CALLCONV void Perl_op_refcnt_lock(pTHX); |
885 | PERL_CALLCONV void Perl_op_refcnt_unlock(pTHX); | |
aec46f14 AL |
886 | PERL_CALLCONV OP* Perl_linklist(pTHX_ OP* o) |
887 | __attribute__nonnull__(pTHX_1); | |
888 | ||
1d7c1841 GS |
889 | PERL_CALLCONV OP* Perl_list(pTHX_ OP* o); |
890 | PERL_CALLCONV OP* Perl_listkids(pTHX_ OP* o); | |
aec46f14 AL |
891 | PERL_CALLCONV void Perl_load_module(pTHX_ U32 flags, SV* name, SV* ver, ...) |
892 | __attribute__nonnull__(pTHX_2); | |
893 | ||
894 | PERL_CALLCONV void Perl_vload_module(pTHX_ U32 flags, SV* name, SV* ver, va_list* args) | |
895 | __attribute__nonnull__(pTHX_2); | |
896 | ||
1d7c1841 | 897 | PERL_CALLCONV OP* Perl_localize(pTHX_ OP* arg, I32 lexical); |
f54cb97a | 898 | PERL_CALLCONV I32 Perl_looks_like_number(pTHX_ SV* sv) |
abb2c242 JH |
899 | __attribute__warn_unused_result__ |
900 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 901 | |
a3b680e6 | 902 | PERL_CALLCONV UV Perl_grok_bin(pTHX_ const char* start, STRLEN* len_p, I32* flags, NV *result) |
abb2c242 JH |
903 | __attribute__nonnull__(pTHX_1) |
904 | __attribute__nonnull__(pTHX_2) | |
905 | __attribute__nonnull__(pTHX_3); | |
f54cb97a | 906 | |
a3b680e6 | 907 | PERL_CALLCONV UV Perl_grok_hex(pTHX_ const char* start, STRLEN* len_p, I32* flags, NV *result) |
abb2c242 JH |
908 | __attribute__nonnull__(pTHX_1) |
909 | __attribute__nonnull__(pTHX_2) | |
910 | __attribute__nonnull__(pTHX_3); | |
f54cb97a AL |
911 | |
912 | PERL_CALLCONV int Perl_grok_number(pTHX_ const char *pv, STRLEN len, UV *valuep) | |
abb2c242 | 913 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 914 | |
901017d6 AL |
915 | PERL_CALLCONV bool Perl_grok_numeric_radix(pTHX_ const char **sp, const char *send) |
916 | __attribute__warn_unused_result__; | |
917 | ||
a3b680e6 | 918 | PERL_CALLCONV UV Perl_grok_oct(pTHX_ const char* start, STRLEN* len_p, I32* flags, NV *result); |
1d7c1841 GS |
919 | PERL_CALLCONV int Perl_magic_clearenv(pTHX_ SV* sv, MAGIC* mg); |
920 | PERL_CALLCONV int Perl_magic_clear_all_env(pTHX_ SV* sv, MAGIC* mg); | |
921 | PERL_CALLCONV int Perl_magic_clearpack(pTHX_ SV* sv, MAGIC* mg); | |
922 | PERL_CALLCONV int Perl_magic_clearsig(pTHX_ SV* sv, MAGIC* mg); | |
923 | PERL_CALLCONV int Perl_magic_existspack(pTHX_ SV* sv, MAGIC* mg); | |
924 | PERL_CALLCONV int Perl_magic_freeregexp(pTHX_ SV* sv, MAGIC* mg); | |
d460ef45 | 925 | PERL_CALLCONV int Perl_magic_freeovrld(pTHX_ SV* sv, MAGIC* mg); |
1d7c1841 | 926 | PERL_CALLCONV int Perl_magic_get(pTHX_ SV* sv, MAGIC* mg); |
8772537c AL |
927 | PERL_CALLCONV int Perl_magic_getarylen(pTHX_ SV* sv, const MAGIC* mg) |
928 | __attribute__nonnull__(pTHX_1) | |
929 | __attribute__nonnull__(pTHX_2); | |
930 | ||
1d7c1841 GS |
931 | PERL_CALLCONV int Perl_magic_getdefelem(pTHX_ SV* sv, MAGIC* mg); |
932 | PERL_CALLCONV int Perl_magic_getglob(pTHX_ SV* sv, MAGIC* mg); | |
933 | PERL_CALLCONV int Perl_magic_getnkeys(pTHX_ SV* sv, MAGIC* mg); | |
934 | PERL_CALLCONV int Perl_magic_getpack(pTHX_ SV* sv, MAGIC* mg); | |
935 | PERL_CALLCONV int Perl_magic_getpos(pTHX_ SV* sv, MAGIC* mg); | |
936 | PERL_CALLCONV int Perl_magic_getsig(pTHX_ SV* sv, MAGIC* mg); | |
937 | PERL_CALLCONV int Perl_magic_getsubstr(pTHX_ SV* sv, MAGIC* mg); | |
938 | PERL_CALLCONV int Perl_magic_gettaint(pTHX_ SV* sv, MAGIC* mg); | |
939 | PERL_CALLCONV int Perl_magic_getuvar(pTHX_ SV* sv, MAGIC* mg); | |
940 | PERL_CALLCONV int Perl_magic_getvec(pTHX_ SV* sv, MAGIC* mg); | |
941 | PERL_CALLCONV U32 Perl_magic_len(pTHX_ SV* sv, MAGIC* mg); | |
1d7c1841 GS |
942 | PERL_CALLCONV int Perl_magic_nextpack(pTHX_ SV* sv, MAGIC* mg, SV* key); |
943 | PERL_CALLCONV U32 Perl_magic_regdata_cnt(pTHX_ SV* sv, MAGIC* mg); | |
944 | PERL_CALLCONV int Perl_magic_regdatum_get(pTHX_ SV* sv, MAGIC* mg); | |
f54cb97a | 945 | PERL_CALLCONV int Perl_magic_regdatum_set(pTHX_ SV* sv, MAGIC* mg) |
abb2c242 | 946 | __attribute__noreturn__; |
f54cb97a | 947 | |
1d7c1841 GS |
948 | PERL_CALLCONV int Perl_magic_set(pTHX_ SV* sv, MAGIC* mg); |
949 | PERL_CALLCONV int Perl_magic_setamagic(pTHX_ SV* sv, MAGIC* mg); | |
950 | PERL_CALLCONV int Perl_magic_setarylen(pTHX_ SV* sv, MAGIC* mg); | |
83bf042f | 951 | PERL_CALLCONV int Perl_magic_freearylen_p(pTHX_ SV* sv, MAGIC* mg); |
1d7c1841 GS |
952 | PERL_CALLCONV int Perl_magic_setbm(pTHX_ SV* sv, MAGIC* mg); |
953 | PERL_CALLCONV int Perl_magic_setdbline(pTHX_ SV* sv, MAGIC* mg); | |
1d7c1841 GS |
954 | PERL_CALLCONV int Perl_magic_setdefelem(pTHX_ SV* sv, MAGIC* mg); |
955 | PERL_CALLCONV int Perl_magic_setenv(pTHX_ SV* sv, MAGIC* mg); | |
956 | PERL_CALLCONV int Perl_magic_setfm(pTHX_ SV* sv, MAGIC* mg); | |
957 | PERL_CALLCONV int Perl_magic_setisa(pTHX_ SV* sv, MAGIC* mg); | |
958 | PERL_CALLCONV int Perl_magic_setglob(pTHX_ SV* sv, MAGIC* mg); | |
959 | PERL_CALLCONV int Perl_magic_setmglob(pTHX_ SV* sv, MAGIC* mg); | |
960 | PERL_CALLCONV int Perl_magic_setnkeys(pTHX_ SV* sv, MAGIC* mg); | |
961 | PERL_CALLCONV int Perl_magic_setpack(pTHX_ SV* sv, MAGIC* mg); | |
962 | PERL_CALLCONV int Perl_magic_setpos(pTHX_ SV* sv, MAGIC* mg); | |
faf82a0b | 963 | PERL_CALLCONV int Perl_magic_setregexp(pTHX_ SV* sv, MAGIC* mg); |
1d7c1841 GS |
964 | PERL_CALLCONV int Perl_magic_setsig(pTHX_ SV* sv, MAGIC* mg); |
965 | PERL_CALLCONV int Perl_magic_setsubstr(pTHX_ SV* sv, MAGIC* mg); | |
966 | PERL_CALLCONV int Perl_magic_settaint(pTHX_ SV* sv, MAGIC* mg); | |
967 | PERL_CALLCONV int Perl_magic_setuvar(pTHX_ SV* sv, MAGIC* mg); | |
968 | PERL_CALLCONV int Perl_magic_setvec(pTHX_ SV* sv, MAGIC* mg); | |
7e8c5dac | 969 | PERL_CALLCONV int Perl_magic_setutf8(pTHX_ SV* sv, MAGIC* mg); |
1d7c1841 GS |
970 | PERL_CALLCONV int Perl_magic_set_all_env(pTHX_ SV* sv, MAGIC* mg); |
971 | PERL_CALLCONV U32 Perl_magic_sizepack(pTHX_ SV* sv, MAGIC* mg); | |
972 | PERL_CALLCONV int Perl_magic_wipepack(pTHX_ SV* sv, MAGIC* mg); | |
e1ec3a88 | 973 | PERL_CALLCONV void Perl_magicname(pTHX_ const char* sym, const char* name, I32 namlen); |
1d7c1841 | 974 | PERL_CALLCONV void Perl_markstack_grow(pTHX); |
864dbfa3 | 975 | #if defined(USE_LOCALE_COLLATE) |
504618e9 | 976 | PERL_CALLCONV int Perl_magic_setcollxfrm(pTHX_ SV* sv, MAGIC* mg); |
1d7c1841 | 977 | PERL_CALLCONV char* Perl_mem_collxfrm(pTHX_ const char* s, STRLEN len, STRLEN* xlen); |
0cb96387 | 978 | #endif |
894356b3 | 979 | PERL_CALLCONV SV* Perl_mess(pTHX_ const char* pat, ...) |
aec46f14 AL |
980 | __attribute__format__(__printf__,pTHX_1,pTHX_2) |
981 | __attribute__nonnull__(pTHX_1); | |
982 | ||
983 | PERL_CALLCONV SV* Perl_vmess(pTHX_ const char* pat, va_list* args) | |
984 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 985 | |
1d7c1841 | 986 | PERL_CALLCONV void Perl_qerror(pTHX_ SV* err); |
2a5a0c38 | 987 | PERL_CALLCONV void Perl_sortsv(pTHX_ SV ** array, size_t num_elts, SVCOMPARE_t cmp); |
1d7c1841 GS |
988 | PERL_CALLCONV int Perl_mg_clear(pTHX_ SV* sv); |
989 | PERL_CALLCONV int Perl_mg_copy(pTHX_ SV* sv, SV* nsv, const char* key, I32 klen); | |
0cbee0a4 | 990 | PERL_CALLCONV void Perl_mg_localize(pTHX_ SV* sv, SV* nsv); |
255164ba DM |
991 | PERL_CALLCONV MAGIC* Perl_mg_find(pTHX_ const SV* sv, int type) |
992 | __attribute__warn_unused_result__; | |
993 | ||
1d7c1841 GS |
994 | PERL_CALLCONV int Perl_mg_free(pTHX_ SV* sv); |
995 | PERL_CALLCONV int Perl_mg_get(pTHX_ SV* sv); | |
996 | PERL_CALLCONV U32 Perl_mg_length(pTHX_ SV* sv); | |
997 | PERL_CALLCONV void Perl_mg_magical(pTHX_ SV* sv); | |
998 | PERL_CALLCONV int Perl_mg_set(pTHX_ SV* sv); | |
8fb26106 | 999 | PERL_CALLCONV I32 Perl_mg_size(pTHX_ SV* sv); |
e72cf795 | 1000 | PERL_CALLCONV void Perl_mini_mktime(pTHX_ struct tm *pm); |
1d7c1841 | 1001 | PERL_CALLCONV OP* Perl_mod(pTHX_ OP* o, I32 type); |
16fe6d59 | 1002 | PERL_CALLCONV int Perl_mode_from_discipline(pTHX_ SV* discp); |
1d7c1841 | 1003 | PERL_CALLCONV char* Perl_moreswitches(pTHX_ char* s); |
4373e329 | 1004 | PERL_CALLCONV OP* Perl_my(pTHX_ OP* o) |
abb2c242 | 1005 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1006 | |
4373e329 | 1007 | PERL_CALLCONV NV Perl_my_atof(pTHX_ const char *s) |
abb2c242 | 1008 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1009 | |
2253333f | 1010 | #if (!defined(HAS_MEMCPY) && !defined(HAS_BCOPY)) || (!defined(HAS_MEMMOVE) && !defined(HAS_SAFE_MEMCPY) && !defined(HAS_SAFE_BCOPY)) |
4373e329 | 1011 | PERL_CALLCONV char* Perl_my_bcopy(const char* from, char* to, I32 len) |
abb2c242 JH |
1012 | __attribute__nonnull__(1) |
1013 | __attribute__nonnull__(2); | |
f54cb97a | 1014 | |
5f05dabc | 1015 | #endif |
a0d0e21e | 1016 | #if !defined(HAS_BZERO) && !defined(HAS_MEMSET) |
4373e329 | 1017 | PERL_CALLCONV char* Perl_my_bzero(char* loc, I32 len) |
abb2c242 | 1018 | __attribute__nonnull__(1); |
f54cb97a | 1019 | |
864dbfa3 | 1020 | #endif |
f54cb97a | 1021 | PERL_CALLCONV void Perl_my_exit(pTHX_ U32 status) |
abb2c242 | 1022 | __attribute__noreturn__; |
f54cb97a AL |
1023 | |
1024 | PERL_CALLCONV void Perl_my_failure_exit(pTHX) | |
abb2c242 | 1025 | __attribute__noreturn__; |
f54cb97a | 1026 | |
1d7c1841 | 1027 | PERL_CALLCONV I32 Perl_my_fflush_all(pTHX); |
52e18b1f GS |
1028 | PERL_CALLCONV Pid_t Perl_my_fork(void); |
1029 | PERL_CALLCONV void Perl_atfork_lock(void); | |
1030 | PERL_CALLCONV void Perl_atfork_unlock(void); | |
1d7c1841 | 1031 | PERL_CALLCONV I32 Perl_my_lstat(pTHX); |
5f05dabc | 1032 | #if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP) |
4373e329 | 1033 | PERL_CALLCONV I32 Perl_my_memcmp(const char* s1, const char* s2, I32 len) |
abb2c242 JH |
1034 | __attribute__pure__ |
1035 | __attribute__nonnull__(1) | |
1036 | __attribute__nonnull__(2); | |
f54cb97a | 1037 | |
a0d0e21e | 1038 | #endif |
fc36a67e | 1039 | #if !defined(HAS_MEMSET) |
4373e329 | 1040 | PERL_CALLCONV void* Perl_my_memset(char* loc, I32 ch, I32 len) |
abb2c242 | 1041 | __attribute__nonnull__(1); |
f54cb97a | 1042 | |
864dbfa3 | 1043 | #endif |
1d7c1841 GS |
1044 | PERL_CALLCONV I32 Perl_my_pclose(pTHX_ PerlIO* ptr); |
1045 | PERL_CALLCONV PerlIO* Perl_my_popen(pTHX_ char* cmd, char* mode); | |
c60e0e09 | 1046 | PERL_CALLCONV PerlIO* Perl_my_popen_list(pTHX_ char* mode, int n, SV ** args); |
e1ec3a88 | 1047 | PERL_CALLCONV void Perl_my_setenv(pTHX_ const char* nam, const char* val); |
1d7c1841 | 1048 | PERL_CALLCONV I32 Perl_my_stat(pTHX); |
e1ec3a88 | 1049 | PERL_CALLCONV char * Perl_my_strftime(pTHX_ const char *fmt, int sec, int min, int hour, int mday, int mon, int year, int wday, int yday, int isdst); |
864dbfa3 | 1050 | #if defined(MYSWAP) |
4373e329 | 1051 | PERL_CALLCONV short Perl_my_swap(pTHX_ short s) |
abb2c242 JH |
1052 | __attribute__malloc__ |
1053 | __attribute__warn_unused_result__ | |
1054 | __attribute__pure__; | |
f54cb97a | 1055 | |
4373e329 | 1056 | PERL_CALLCONV long Perl_my_htonl(pTHX_ long l) |
abb2c242 JH |
1057 | __attribute__malloc__ |
1058 | __attribute__warn_unused_result__ | |
1059 | __attribute__pure__; | |
f54cb97a | 1060 | |
4373e329 | 1061 | PERL_CALLCONV long Perl_my_ntohl(pTHX_ long l) |
abb2c242 JH |
1062 | __attribute__malloc__ |
1063 | __attribute__warn_unused_result__ | |
1064 | __attribute__pure__; | |
f54cb97a | 1065 | |
0cb96387 | 1066 | #endif |
1d7c1841 | 1067 | PERL_CALLCONV void Perl_my_unexec(pTHX); |
f54cb97a | 1068 | PERL_CALLCONV OP* Perl_newANONLIST(pTHX_ OP* o) |
abb2c242 JH |
1069 | __attribute__malloc__ |
1070 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1071 | |
1072 | PERL_CALLCONV OP* Perl_newANONHASH(pTHX_ OP* o) | |
abb2c242 JH |
1073 | __attribute__malloc__ |
1074 | __attribute__warn_unused_result__; | |
f54cb97a | 1075 | |
1d7c1841 | 1076 | PERL_CALLCONV OP* Perl_newANONSUB(pTHX_ I32 floor, OP* proto, OP* block); |
f54cb97a | 1077 | PERL_CALLCONV OP* Perl_newASSIGNOP(pTHX_ I32 flags, OP* left, I32 optype, OP* right) |
abb2c242 JH |
1078 | __attribute__malloc__ |
1079 | __attribute__warn_unused_result__; | |
f54cb97a | 1080 | |
aec46f14 | 1081 | PERL_CALLCONV OP* Perl_newCONDOP(pTHX_ I32 flags, OP* first, OP* trueop, OP* falseop) |
abb2c242 | 1082 | __attribute__malloc__ |
aec46f14 AL |
1083 | __attribute__warn_unused_result__ |
1084 | __attribute__nonnull__(pTHX_2); | |
1085 | ||
1086 | PERL_CALLCONV CV* Perl_newCONSTSUB(pTHX_ HV* stash, const char* name, SV* sv) | |
1087 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1088 | |
1d7c1841 | 1089 | PERL_CALLCONV void Perl_newFORM(pTHX_ I32 floor, OP* o, OP* block); |
f54cb97a | 1090 | PERL_CALLCONV OP* Perl_newFOROP(pTHX_ I32 flags, char* label, line_t forline, OP* sclr, OP* expr, OP*block, OP*cont) |
abb2c242 JH |
1091 | __attribute__malloc__ |
1092 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1093 | |
1094 | PERL_CALLCONV OP* Perl_newLOGOP(pTHX_ I32 optype, I32 flags, OP* left, OP* right) | |
abb2c242 JH |
1095 | __attribute__malloc__ |
1096 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1097 | |
1098 | PERL_CALLCONV OP* Perl_newLOOPEX(pTHX_ I32 type, OP* label) | |
abb2c242 JH |
1099 | __attribute__malloc__ |
1100 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1101 | |
1102 | PERL_CALLCONV OP* Perl_newLOOPOP(pTHX_ I32 flags, I32 debuggable, OP* expr, OP* block) | |
abb2c242 JH |
1103 | __attribute__malloc__ |
1104 | __attribute__warn_unused_result__; | |
f54cb97a | 1105 | |
4373e329 | 1106 | PERL_CALLCONV OP* Perl_newNULLLIST(pTHX) |
abb2c242 JH |
1107 | __attribute__malloc__ |
1108 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1109 | |
1110 | PERL_CALLCONV OP* Perl_newOP(pTHX_ I32 optype, I32 flags) | |
abb2c242 JH |
1111 | __attribute__malloc__ |
1112 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1113 | |
1114 | PERL_CALLCONV void Perl_newPROG(pTHX_ OP* o) | |
abb2c242 | 1115 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
1116 | |
1117 | PERL_CALLCONV OP* Perl_newRANGE(pTHX_ I32 flags, OP* left, OP* right) | |
abb2c242 JH |
1118 | __attribute__malloc__ |
1119 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1120 | |
1121 | PERL_CALLCONV OP* Perl_newSLICEOP(pTHX_ I32 flags, OP* subscript, OP* listop) | |
abb2c242 JH |
1122 | __attribute__malloc__ |
1123 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1124 | |
1125 | PERL_CALLCONV OP* Perl_newSTATEOP(pTHX_ I32 flags, char* label, OP* o) | |
abb2c242 JH |
1126 | __attribute__malloc__ |
1127 | __attribute__warn_unused_result__; | |
f54cb97a | 1128 | |
1d7c1841 | 1129 | PERL_CALLCONV CV* Perl_newSUB(pTHX_ I32 floor, OP* o, OP* proto, OP* block); |
4373e329 | 1130 | PERL_CALLCONV CV* Perl_newXS(pTHX_ const char* name, XSUBADDR_t f, const char* filename) |
abb2c242 JH |
1131 | __attribute__nonnull__(pTHX_1) |
1132 | __attribute__nonnull__(pTHX_3); | |
f54cb97a AL |
1133 | |
1134 | PERL_CALLCONV AV* Perl_newAV(pTHX) | |
abb2c242 JH |
1135 | __attribute__malloc__ |
1136 | __attribute__warn_unused_result__; | |
f54cb97a | 1137 | |
4373e329 | 1138 | PERL_CALLCONV OP* Perl_newAVREF(pTHX_ OP* o) |
abb2c242 JH |
1139 | __attribute__malloc__ |
1140 | __attribute__warn_unused_result__ | |
1141 | __attribute__nonnull__(pTHX_1); | |
f54cb97a AL |
1142 | |
1143 | PERL_CALLCONV OP* Perl_newBINOP(pTHX_ I32 type, I32 flags, OP* first, OP* last) | |
abb2c242 JH |
1144 | __attribute__malloc__ |
1145 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1146 | |
1147 | PERL_CALLCONV OP* Perl_newCVREF(pTHX_ I32 flags, OP* o) | |
abb2c242 JH |
1148 | __attribute__malloc__ |
1149 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1150 | |
1151 | PERL_CALLCONV OP* Perl_newGVOP(pTHX_ I32 type, I32 flags, GV* gv) | |
abb2c242 JH |
1152 | __attribute__malloc__ |
1153 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1154 | |
1155 | PERL_CALLCONV GV* Perl_newGVgen(pTHX_ const char* pack) | |
abb2c242 JH |
1156 | __attribute__malloc__ |
1157 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1158 | |
1159 | PERL_CALLCONV OP* Perl_newGVREF(pTHX_ I32 type, OP* o) | |
abb2c242 JH |
1160 | __attribute__malloc__ |
1161 | __attribute__warn_unused_result__; | |
f54cb97a | 1162 | |
4373e329 | 1163 | PERL_CALLCONV OP* Perl_newHVREF(pTHX_ OP* o) |
abb2c242 JH |
1164 | __attribute__malloc__ |
1165 | __attribute__warn_unused_result__ | |
1166 | __attribute__nonnull__(pTHX_1); | |
f54cb97a AL |
1167 | |
1168 | PERL_CALLCONV HV* Perl_newHV(pTHX) | |
abb2c242 JH |
1169 | __attribute__malloc__ |
1170 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1171 | |
1172 | PERL_CALLCONV HV* Perl_newHVhv(pTHX_ HV* hv) | |
abb2c242 JH |
1173 | __attribute__malloc__ |
1174 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1175 | |
1176 | PERL_CALLCONV IO* Perl_newIO(pTHX) | |
abb2c242 JH |
1177 | __attribute__malloc__ |
1178 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1179 | |
1180 | PERL_CALLCONV OP* Perl_newLISTOP(pTHX_ I32 type, I32 flags, OP* first, OP* last) | |
abb2c242 JH |
1181 | __attribute__malloc__ |
1182 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1183 | |
1184 | PERL_CALLCONV OP* Perl_newPADOP(pTHX_ I32 type, I32 flags, SV* sv) | |
abb2c242 JH |
1185 | __attribute__malloc__ |
1186 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1187 | |
1188 | PERL_CALLCONV OP* Perl_newPMOP(pTHX_ I32 type, I32 flags) | |
abb2c242 JH |
1189 | __attribute__malloc__ |
1190 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1191 | |
1192 | PERL_CALLCONV OP* Perl_newPVOP(pTHX_ I32 type, I32 flags, char* pv) | |
abb2c242 JH |
1193 | __attribute__malloc__ |
1194 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1195 | |
1196 | PERL_CALLCONV SV* Perl_newRV(pTHX_ SV* pref) | |
abb2c242 | 1197 | __attribute__malloc__ |
66a1b24b AL |
1198 | __attribute__warn_unused_result__ |
1199 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 1200 | |
4373e329 | 1201 | PERL_CALLCONV SV* Perl_newRV_noinc(pTHX_ SV *sv) |
abb2c242 JH |
1202 | __attribute__malloc__ |
1203 | __attribute__warn_unused_result__ | |
1204 | __attribute__nonnull__(pTHX_1); | |
f54cb97a AL |
1205 | |
1206 | PERL_CALLCONV SV* Perl_newSV(pTHX_ STRLEN len) | |
abb2c242 JH |
1207 | __attribute__malloc__ |
1208 | __attribute__warn_unused_result__; | |
f54cb97a | 1209 | |
4373e329 | 1210 | PERL_CALLCONV OP* Perl_newSVREF(pTHX_ OP* o) |
abb2c242 JH |
1211 | __attribute__malloc__ |
1212 | __attribute__warn_unused_result__ | |
1213 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 1214 | |
4373e329 | 1215 | PERL_CALLCONV OP* Perl_newSVOP(pTHX_ I32 type, I32 flags, SV* sv) |
abb2c242 JH |
1216 | __attribute__malloc__ |
1217 | __attribute__warn_unused_result__ | |
1218 | __attribute__nonnull__(pTHX_3); | |
f54cb97a AL |
1219 | |
1220 | PERL_CALLCONV SV* Perl_newSViv(pTHX_ IV i) | |
abb2c242 JH |
1221 | __attribute__malloc__ |
1222 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1223 | |
1224 | PERL_CALLCONV SV* Perl_newSVuv(pTHX_ UV u) | |
abb2c242 JH |
1225 | __attribute__malloc__ |
1226 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1227 | |
1228 | PERL_CALLCONV SV* Perl_newSVnv(pTHX_ NV n) | |
abb2c242 JH |
1229 | __attribute__malloc__ |
1230 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1231 | |
1232 | PERL_CALLCONV SV* Perl_newSVpv(pTHX_ const char* s, STRLEN len) | |
abb2c242 JH |
1233 | __attribute__malloc__ |
1234 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1235 | |
1236 | PERL_CALLCONV SV* Perl_newSVpvn(pTHX_ const char* s, STRLEN len) | |
abb2c242 JH |
1237 | __attribute__malloc__ |
1238 | __attribute__warn_unused_result__; | |
f54cb97a | 1239 | |
c1b02ed8 NC |
1240 | PERL_CALLCONV SV* Perl_newSVhek(pTHX_ const HEK *hek) |
1241 | __attribute__malloc__ | |
1242 | __attribute__warn_unused_result__; | |
1243 | ||
f54cb97a | 1244 | PERL_CALLCONV SV* Perl_newSVpvn_share(pTHX_ const char* s, I32 len, U32 hash) |
abb2c242 JH |
1245 | __attribute__malloc__ |
1246 | __attribute__warn_unused_result__; | |
f54cb97a | 1247 | |
894356b3 | 1248 | PERL_CALLCONV SV* Perl_newSVpvf(pTHX_ const char* pat, ...) |
abb2c242 JH |
1249 | __attribute__malloc__ |
1250 | __attribute__warn_unused_result__ | |
aec46f14 AL |
1251 | __attribute__format__(__printf__,pTHX_1,pTHX_2) |
1252 | __attribute__nonnull__(pTHX_1); | |
1253 | ||
1254 | PERL_CALLCONV SV* Perl_vnewSVpvf(pTHX_ const char* pat, va_list* args) | |
1255 | __attribute__malloc__ | |
1256 | __attribute__warn_unused_result__ | |
1257 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 1258 | |
f54cb97a | 1259 | PERL_CALLCONV SV* Perl_newSVrv(pTHX_ SV* rv, const char* classname) |
abb2c242 | 1260 | __attribute__malloc__ |
1b6737cc AL |
1261 | __attribute__warn_unused_result__ |
1262 | __attribute__nonnull__(pTHX_1); | |
f54cb97a AL |
1263 | |
1264 | PERL_CALLCONV SV* Perl_newSVsv(pTHX_ SV* old) | |
abb2c242 JH |
1265 | __attribute__malloc__ |
1266 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1267 | |
1268 | PERL_CALLCONV OP* Perl_newUNOP(pTHX_ I32 type, I32 flags, OP* first) | |
abb2c242 JH |
1269 | __attribute__malloc__ |
1270 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1271 | |
1272 | PERL_CALLCONV OP* Perl_newWHILEOP(pTHX_ I32 flags, I32 debuggable, LOOP* loop, I32 whileline, OP* expr, OP* block, OP* cont, I32 has_my) | |
abb2c242 JH |
1273 | __attribute__malloc__ |
1274 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1275 | |
1276 | PERL_CALLCONV PERL_SI* Perl_new_stackinfo(pTHX_ I32 stitems, I32 cxitems) | |
abb2c242 JH |
1277 | __attribute__malloc__ |
1278 | __attribute__warn_unused_result__; | |
f54cb97a | 1279 | |
4373e329 | 1280 | PERL_CALLCONV char* Perl_scan_vstring(pTHX_ const char *vstr, SV *sv) |
abb2c242 JH |
1281 | __attribute__nonnull__(pTHX_1) |
1282 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1283 | |
9137345a | 1284 | PERL_CALLCONV const char* Perl_scan_version(pTHX_ const char *vstr, SV *sv, bool qv) |
abb2c242 JH |
1285 | __attribute__nonnull__(pTHX_1) |
1286 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1287 | |
b0f01acb JP |
1288 | PERL_CALLCONV SV* Perl_new_version(pTHX_ SV *ver); |
1289 | PERL_CALLCONV SV* Perl_upg_version(pTHX_ SV *ver); | |
ad63d80f | 1290 | PERL_CALLCONV SV* Perl_vnumify(pTHX_ SV *vs); |
b9381830 | 1291 | PERL_CALLCONV SV* Perl_vnormal(pTHX_ SV *vs); |
ad63d80f | 1292 | PERL_CALLCONV SV* Perl_vstringify(pTHX_ SV *vs); |
4373e329 | 1293 | PERL_CALLCONV int Perl_vcmp(pTHX_ SV *lvs, SV *rvs) |
abb2c242 JH |
1294 | __attribute__nonnull__(pTHX_1) |
1295 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1296 | |
1d7c1841 | 1297 | PERL_CALLCONV PerlIO* Perl_nextargv(pTHX_ GV* gv); |
4373e329 | 1298 | PERL_CALLCONV char* Perl_ninstr(pTHX_ const char* big, const char* bigend, const char* little, const char* lend) |
abb2c242 | 1299 | __attribute__pure__; |
f54cb97a AL |
1300 | |
1301 | PERL_CALLCONV OP* Perl_oopsCV(pTHX_ OP* o) | |
abb2c242 | 1302 | __attribute__noreturn__; |
f54cb97a | 1303 | |
1d7c1841 GS |
1304 | PERL_CALLCONV void Perl_op_free(pTHX_ OP* arg); |
1305 | PERL_CALLCONV void Perl_package(pTHX_ OP* o); | |
1306 | PERL_CALLCONV PADOFFSET Perl_pad_alloc(pTHX_ I32 optype, U32 tmptype); | |
4373e329 | 1307 | PERL_CALLCONV PADOFFSET Perl_allocmy(pTHX_ char* name) |
abb2c242 | 1308 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1309 | |
4373e329 | 1310 | PERL_CALLCONV PADOFFSET Perl_pad_findmy(pTHX_ const char* name) |
255164ba | 1311 | __attribute__warn_unused_result__ |
abb2c242 | 1312 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1313 | |
e1f795dc | 1314 | PERL_CALLCONV PADOFFSET Perl_find_rundefsvoffset(pTHX); |
4373e329 | 1315 | PERL_CALLCONV OP* Perl_oopsAV(pTHX_ OP* o) |
1df70142 | 1316 | __attribute__warn_unused_result__ |
abb2c242 | 1317 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1318 | |
4373e329 | 1319 | PERL_CALLCONV OP* Perl_oopsHV(pTHX_ OP* o) |
1df70142 | 1320 | __attribute__warn_unused_result__ |
abb2c242 | 1321 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1322 | |
dd2155a4 | 1323 | PERL_CALLCONV void Perl_pad_leavemy(pTHX); |
1d7c1841 GS |
1324 | PERL_CALLCONV SV* Perl_pad_sv(pTHX_ PADOFFSET po); |
1325 | PERL_CALLCONV void Perl_pad_free(pTHX_ PADOFFSET po); | |
1326 | PERL_CALLCONV void Perl_pad_reset(pTHX); | |
dd2155a4 | 1327 | PERL_CALLCONV void Perl_pad_swipe(pTHX_ PADOFFSET po, bool refadjust); |
1d7c1841 | 1328 | PERL_CALLCONV void Perl_peep(pTHX_ OP* o); |
ae154d6d | 1329 | PERL_CALLCONV PerlIO* Perl_start_glob(pTHX_ SV* pattern, IO *io); |
59bd0823 | 1330 | #if defined(USE_REENTRANT_API) |
10bc17b6 | 1331 | PERL_CALLCONV void Perl_reentrant_size(pTHX); |
59bd0823 | 1332 | PERL_CALLCONV void Perl_reentrant_init(pTHX); |
10bc17b6 | 1333 | PERL_CALLCONV void Perl_reentrant_free(pTHX); |
c803eecc | 1334 | PERL_CALLCONV void* Perl_reentrant_retry(const char*, ...); |
59bd0823 | 1335 | #endif |
1d7c1841 | 1336 | PERL_CALLCONV void Perl_call_atexit(pTHX_ ATEXIT_t fn, void *ptr); |
4373e329 | 1337 | PERL_CALLCONV I32 Perl_call_argv(pTHX_ const char* sub_name, I32 flags, char** argv) |
abb2c242 JH |
1338 | __attribute__nonnull__(pTHX_1) |
1339 | __attribute__nonnull__(pTHX_3); | |
f54cb97a | 1340 | |
4373e329 | 1341 | PERL_CALLCONV I32 Perl_call_method(pTHX_ const char* methname, I32 flags) |
abb2c242 | 1342 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1343 | |
4373e329 | 1344 | PERL_CALLCONV I32 Perl_call_pv(pTHX_ const char* sub_name, I32 flags) |
abb2c242 | 1345 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1346 | |
aec46f14 AL |
1347 | PERL_CALLCONV I32 Perl_call_sv(pTHX_ SV* sv, I32 flags) |
1348 | __attribute__nonnull__(pTHX_1); | |
1349 | ||
ce08f86c | 1350 | PERL_CALLCONV void Perl_despatch_signals(pTHX); |
4373e329 | 1351 | PERL_CALLCONV SV* Perl_eval_pv(pTHX_ const char* p, I32 croak_on_error) |
abb2c242 | 1352 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1353 | |
4373e329 | 1354 | PERL_CALLCONV I32 Perl_eval_sv(pTHX_ SV* sv, I32 flags) |
abb2c242 | 1355 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1356 | |
4373e329 | 1357 | PERL_CALLCONV SV* Perl_get_sv(pTHX_ const char* name, I32 create) |
abb2c242 | 1358 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1359 | |
4373e329 | 1360 | PERL_CALLCONV AV* Perl_get_av(pTHX_ const char* name, I32 create) |
255164ba DM |
1361 | __attribute__nonnull__(pTHX_1); |
1362 | ||
1363 | PERL_CALLCONV HV* Perl_get_hv(pTHX_ const char* name, I32 create) | |
255164ba DM |
1364 | __attribute__nonnull__(pTHX_1); |
1365 | ||
1366 | PERL_CALLCONV CV* Perl_get_cv(pTHX_ const char* name, I32 create) | |
abb2c242 | 1367 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1368 | |
1d7c1841 GS |
1369 | PERL_CALLCONV int Perl_init_i18nl10n(pTHX_ int printwarn); |
1370 | PERL_CALLCONV int Perl_init_i18nl14n(pTHX_ int printwarn); | |
8772537c AL |
1371 | PERL_CALLCONV void Perl_new_collate(pTHX_ const char* newcoll); |
1372 | PERL_CALLCONV void Perl_new_ctype(pTHX_ const char* newctype) | |
abb2c242 | 1373 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1374 | |
8772537c | 1375 | PERL_CALLCONV void Perl_new_numeric(pTHX_ const char* newcoll); |
1d7c1841 GS |
1376 | PERL_CALLCONV void Perl_set_numeric_local(pTHX); |
1377 | PERL_CALLCONV void Perl_set_numeric_radix(pTHX); | |
1378 | PERL_CALLCONV void Perl_set_numeric_standard(pTHX); | |
4373e329 | 1379 | PERL_CALLCONV void Perl_require_pv(pTHX_ const char* pv) |
abb2c242 | 1380 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1381 | |
f7fe979e AL |
1382 | PERL_CALLCONV void Perl_pack_cat(pTHX_ SV *cat, const char *pat, const char *patend, SV **beglist, SV **endlist, SV ***next_in_list, U32 flags); |
1383 | PERL_CALLCONV void Perl_packlist(pTHX_ SV *cat, const char *pat, const char *patend, SV **beglist, SV **endlist); | |
1d7c1841 | 1384 | PERL_CALLCONV void Perl_pidgone(pTHX_ Pid_t pid, int status); |
4373e329 | 1385 | PERL_CALLCONV void Perl_pmflag(pTHX_ U32* pmfl, int ch) |
abb2c242 | 1386 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1387 | |
4373e329 | 1388 | PERL_CALLCONV OP* Perl_pmruntime(pTHX_ OP* pm, OP* expr, bool isreg) |
abb2c242 JH |
1389 | __attribute__nonnull__(pTHX_1) |
1390 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1391 | |
4373e329 | 1392 | PERL_CALLCONV OP* Perl_pmtrans(pTHX_ OP* o, OP* expr, OP* repl) |
abb2c242 JH |
1393 | __attribute__nonnull__(pTHX_1) |
1394 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1395 | |
1d7c1841 GS |
1396 | PERL_CALLCONV void Perl_pop_scope(pTHX); |
1397 | PERL_CALLCONV OP* Perl_prepend_elem(pTHX_ I32 optype, OP* head, OP* tail); | |
1d7c1841 GS |
1398 | PERL_CALLCONV void Perl_push_scope(pTHX); |
1399 | PERL_CALLCONV OP* Perl_ref(pTHX_ OP* o, I32 type); | |
1400 | PERL_CALLCONV OP* Perl_refkids(pTHX_ OP* o, I32 type); | |
4373e329 | 1401 | PERL_CALLCONV void Perl_regdump(pTHX_ regexp* r) |
abb2c242 | 1402 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1403 | |
a3b680e6 | 1404 | PERL_CALLCONV SV* Perl_regclass_swash(pTHX_ const struct regnode *n, bool doinit, SV **listsvp, SV **altsvp); |
4373e329 | 1405 | PERL_CALLCONV I32 Perl_pregexec(pTHX_ regexp* prog, char* stringarg, char* strend, char* strbeg, I32 minend, SV* screamer, U32 nosave) |
abb2c242 JH |
1406 | __attribute__nonnull__(pTHX_1) |
1407 | __attribute__nonnull__(pTHX_2) | |
1408 | __attribute__nonnull__(pTHX_3) | |
1409 | __attribute__nonnull__(pTHX_4) | |
1410 | __attribute__nonnull__(pTHX_6); | |
f54cb97a | 1411 | |
1d7c1841 | 1412 | PERL_CALLCONV void Perl_pregfree(pTHX_ struct regexp* r); |
4373e329 | 1413 | PERL_CALLCONV regexp* Perl_pregcomp(pTHX_ char* exp, char* xend, PMOP* pm) |
abb2c242 JH |
1414 | __attribute__nonnull__(pTHX_1) |
1415 | __attribute__nonnull__(pTHX_2) | |
1416 | __attribute__nonnull__(pTHX_3); | |
f54cb97a | 1417 | |
1d7c1841 GS |
1418 | PERL_CALLCONV char* Perl_re_intuit_start(pTHX_ regexp* prog, SV* sv, char* strpos, char* strend, U32 flags, struct re_scream_pos_data_s *data); |
1419 | PERL_CALLCONV SV* Perl_re_intuit_string(pTHX_ regexp* prog); | |
a3b680e6 | 1420 | PERL_CALLCONV I32 Perl_regexec_flags(pTHX_ regexp* prog, char* stringarg, char* strend, char* strbeg, I32 minend, SV* screamer, void* data, U32 flags) |
abb2c242 JH |
1421 | __attribute__nonnull__(pTHX_1) |
1422 | __attribute__nonnull__(pTHX_2) | |
1423 | __attribute__nonnull__(pTHX_3) | |
1424 | __attribute__nonnull__(pTHX_4); | |
a3b680e6 | 1425 | |
1df70142 AL |
1426 | PERL_CALLCONV regnode* Perl_regnext(pTHX_ regnode* p) |
1427 | __attribute__warn_unused_result__ | |
1428 | __attribute__nonnull__(pTHX_1); | |
1429 | ||
a3b680e6 | 1430 | PERL_CALLCONV void Perl_regprop(pTHX_ SV* sv, const regnode* o); |
4373e329 | 1431 | PERL_CALLCONV void Perl_repeatcpy(pTHX_ char* to, const char* from, I32 len, I32 count) |
abb2c242 JH |
1432 | __attribute__nonnull__(pTHX_1) |
1433 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1434 | |
4373e329 | 1435 | PERL_CALLCONV char* Perl_rninstr(pTHX_ const char* big, const char* bigend, const char* little, const char* lend) |
abb2c242 JH |
1436 | __attribute__pure__ |
1437 | __attribute__nonnull__(pTHX_1) | |
1438 | __attribute__nonnull__(pTHX_2) | |
1439 | __attribute__nonnull__(pTHX_3) | |
1440 | __attribute__nonnull__(pTHX_4); | |
f54cb97a | 1441 | |
1d7c1841 GS |
1442 | PERL_CALLCONV Sighandler_t Perl_rsignal(pTHX_ int i, Sighandler_t t); |
1443 | PERL_CALLCONV int Perl_rsignal_restore(pTHX_ int i, Sigsave_t* t); | |
1444 | PERL_CALLCONV int Perl_rsignal_save(pTHX_ int i, Sighandler_t t1, Sigsave_t* t2); | |
1445 | PERL_CALLCONV Sighandler_t Perl_rsignal_state(pTHX_ int i); | |
a3b680e6 | 1446 | PERL_CALLCONV void Perl_rxres_free(pTHX_ void** rsp) |
abb2c242 | 1447 | __attribute__nonnull__(pTHX_1); |
a3b680e6 AL |
1448 | |
1449 | PERL_CALLCONV void Perl_rxres_restore(pTHX_ void** rsp, REGEXP* prx) | |
abb2c242 JH |
1450 | __attribute__nonnull__(pTHX_1) |
1451 | __attribute__nonnull__(pTHX_2); | |
a3b680e6 AL |
1452 | |
1453 | PERL_CALLCONV void Perl_rxres_save(pTHX_ void** rsp, REGEXP* prx) | |
abb2c242 JH |
1454 | __attribute__nonnull__(pTHX_1) |
1455 | __attribute__nonnull__(pTHX_2); | |
a3b680e6 | 1456 | |
cea2e8a9 | 1457 | #if !defined(HAS_RENAME) |
4373e329 | 1458 | PERL_CALLCONV I32 Perl_same_dirent(pTHX_ const char* a, const char* b) |
abb2c242 JH |
1459 | __attribute__nonnull__(pTHX_1) |
1460 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1461 | |
0cb96387 | 1462 | #endif |
53c1dcc0 AL |
1463 | PERL_CALLCONV char* Perl_savepv(pTHX_ const char* pv) |
1464 | __attribute__malloc__ | |
1465 | __attribute__warn_unused_result__ | |
1466 | __attribute__nonnull__(pTHX_1); | |
1467 | ||
1468 | PERL_CALLCONV char* Perl_savepvn(pTHX_ const char* pv, I32 len) | |
1469 | __attribute__malloc__ | |
1470 | __attribute__warn_unused_result__ | |
1471 | __attribute__nonnull__(pTHX_1); | |
1472 | ||
1473 | PERL_CALLCONV char* Perl_savesharedpv(pTHX_ const char* pv) | |
1474 | __attribute__malloc__ | |
1475 | __attribute__warn_unused_result__; | |
1476 | ||
1477 | PERL_CALLCONV char* Perl_savesvpv(pTHX_ SV* sv) | |
1478 | __attribute__malloc__ | |
1479 | __attribute__warn_unused_result__ | |
1480 | __attribute__nonnull__(pTHX_1); | |
1481 | ||
1d7c1841 | 1482 | PERL_CALLCONV void Perl_savestack_grow(pTHX); |
4b3c1a47 | 1483 | PERL_CALLCONV void Perl_savestack_grow_cnt(pTHX_ I32 need); |
35a4481c | 1484 | PERL_CALLCONV void Perl_save_aelem(pTHX_ const AV* av, I32 idx, SV **sptr); |
1d7c1841 GS |
1485 | PERL_CALLCONV I32 Perl_save_alloc(pTHX_ I32 size, I32 pad); |
1486 | PERL_CALLCONV void Perl_save_aptr(pTHX_ AV** aptr); | |
1487 | PERL_CALLCONV AV* Perl_save_ary(pTHX_ GV* gv); | |
9febdf04 | 1488 | PERL_CALLCONV void Perl_save_bool(pTHX_ bool* boolp); |
1d7c1841 GS |
1489 | PERL_CALLCONV void Perl_save_clearsv(pTHX_ SV** svp); |
1490 | PERL_CALLCONV void Perl_save_delete(pTHX_ HV* hv, char* key, I32 klen); | |
1491 | PERL_CALLCONV void Perl_save_destructor(pTHX_ DESTRUCTORFUNC_NOCONTEXT_t f, void* p); | |
1492 | PERL_CALLCONV void Perl_save_destructor_x(pTHX_ DESTRUCTORFUNC_t f, void* p); | |
1493 | PERL_CALLCONV void Perl_save_freesv(pTHX_ SV* sv); | |
1494 | PERL_CALLCONV void Perl_save_freeop(pTHX_ OP* o); | |
1495 | PERL_CALLCONV void Perl_save_freepv(pTHX_ char* pv); | |
1496 | PERL_CALLCONV void Perl_save_generic_svref(pTHX_ SV** sptr); | |
f4dd75d9 | 1497 | PERL_CALLCONV void Perl_save_generic_pvref(pTHX_ char** str); |
05ec9bb3 | 1498 | PERL_CALLCONV void Perl_save_shared_pvref(pTHX_ char** str); |
aec46f14 AL |
1499 | PERL_CALLCONV void Perl_save_gp(pTHX_ GV* gv, I32 empty) |
1500 | __attribute__nonnull__(pTHX_1); | |
1501 | ||
1502 | PERL_CALLCONV HV* Perl_save_hash(pTHX_ GV* gv) | |
1503 | __attribute__nonnull__(pTHX_1); | |
1504 | ||
e1ec3a88 | 1505 | PERL_CALLCONV void Perl_save_helem(pTHX_ HV* hv, SV *key, SV **sptr); |
f54cb97a | 1506 | PERL_CALLCONV void Perl_save_hints(pTHX) |
abb2c242 | 1507 | __attribute__noreturn__; |
f54cb97a | 1508 | |
aec46f14 AL |
1509 | PERL_CALLCONV void Perl_save_hptr(pTHX_ HV** hptr) |
1510 | __attribute__nonnull__(pTHX_1); | |
1511 | ||
1512 | PERL_CALLCONV void Perl_save_I16(pTHX_ I16* intp) | |
1513 | __attribute__nonnull__(pTHX_1); | |
1514 | ||
1515 | PERL_CALLCONV void Perl_save_I32(pTHX_ I32* intp) | |
1516 | __attribute__nonnull__(pTHX_1); | |
1517 | ||
1518 | PERL_CALLCONV void Perl_save_I8(pTHX_ I8* bytep) | |
1519 | __attribute__nonnull__(pTHX_1); | |
1520 | ||
1521 | PERL_CALLCONV void Perl_save_int(pTHX_ int* intp) | |
1522 | __attribute__nonnull__(pTHX_1); | |
1523 | ||
1524 | PERL_CALLCONV void Perl_save_item(pTHX_ SV* item) | |
1525 | __attribute__nonnull__(pTHX_1); | |
1526 | ||
1527 | PERL_CALLCONV void Perl_save_iv(pTHX_ IV* iv) | |
1528 | __attribute__nonnull__(pTHX_1); | |
1529 | ||
1530 | PERL_CALLCONV void Perl_save_list(pTHX_ SV** sarg, I32 maxsarg) | |
1531 | __attribute__nonnull__(pTHX_1); | |
1532 | ||
1533 | PERL_CALLCONV void Perl_save_long(pTHX_ long* longp) | |
1534 | __attribute__nonnull__(pTHX_1); | |
1535 | ||
1536 | PERL_CALLCONV void Perl_save_mortalizesv(pTHX_ SV* sv) | |
1537 | __attribute__nonnull__(pTHX_1); | |
1538 | ||
1d7c1841 GS |
1539 | PERL_CALLCONV void Perl_save_nogv(pTHX_ GV* gv); |
1540 | PERL_CALLCONV void Perl_save_op(pTHX); | |
aec46f14 AL |
1541 | PERL_CALLCONV SV* Perl_save_scalar(pTHX_ GV* gv) |
1542 | __attribute__nonnull__(pTHX_1); | |
1543 | ||
1544 | PERL_CALLCONV void Perl_save_pptr(pTHX_ char** pptr) | |
1545 | __attribute__nonnull__(pTHX_1); | |
1546 | ||
1547 | PERL_CALLCONV void Perl_save_vptr(pTHX_ void* pptr) | |
1548 | __attribute__nonnull__(pTHX_1); | |
1549 | ||
1d7c1841 | 1550 | PERL_CALLCONV void Perl_save_re_context(pTHX); |
c3564e5c | 1551 | PERL_CALLCONV void Perl_save_padsv(pTHX_ PADOFFSET off); |
aec46f14 AL |
1552 | PERL_CALLCONV void Perl_save_sptr(pTHX_ SV** sptr) |
1553 | __attribute__nonnull__(pTHX_1); | |
1554 | ||
1555 | PERL_CALLCONV SV* Perl_save_svref(pTHX_ SV** sptr) | |
1556 | __attribute__nonnull__(pTHX_1); | |
1557 | ||
f54cb97a | 1558 | PERL_CALLCONV SV** Perl_save_threadsv(pTHX_ PADOFFSET i) |
abb2c242 | 1559 | __attribute__noreturn__; |
f54cb97a | 1560 | |
1d7c1841 GS |
1561 | PERL_CALLCONV OP* Perl_sawparens(pTHX_ OP* o); |
1562 | PERL_CALLCONV OP* Perl_scalar(pTHX_ OP* o); | |
1563 | PERL_CALLCONV OP* Perl_scalarkids(pTHX_ OP* o); | |
1564 | PERL_CALLCONV OP* Perl_scalarseq(pTHX_ OP* o); | |
aec46f14 AL |
1565 | PERL_CALLCONV OP* Perl_scalarvoid(pTHX_ OP* o) |
1566 | __attribute__nonnull__(pTHX_1); | |
1567 | ||
1568 | PERL_CALLCONV NV Perl_scan_bin(pTHX_ const char* start, STRLEN len, STRLEN* retlen) | |
1569 | __attribute__nonnull__(pTHX_1) | |
1570 | __attribute__nonnull__(pTHX_3); | |
1571 | ||
1572 | PERL_CALLCONV NV Perl_scan_hex(pTHX_ const char* start, STRLEN len, STRLEN* retlen) | |
1573 | __attribute__nonnull__(pTHX_1) | |
1574 | __attribute__nonnull__(pTHX_3); | |
1575 | ||
1576 | PERL_CALLCONV char* Perl_scan_num(pTHX_ const char* s, YYSTYPE *lvalp) | |
1577 | __attribute__nonnull__(pTHX_1) | |
1578 | __attribute__nonnull__(pTHX_2); | |
1579 | ||
1580 | PERL_CALLCONV NV Perl_scan_oct(pTHX_ const char* start, STRLEN len, STRLEN* retlen) | |
1581 | __attribute__nonnull__(pTHX_1) | |
1582 | __attribute__nonnull__(pTHX_3); | |
1583 | ||
1d7c1841 | 1584 | PERL_CALLCONV OP* Perl_scope(pTHX_ OP* o); |
aec46f14 AL |
1585 | PERL_CALLCONV char* Perl_screaminstr(pTHX_ SV *bigstr, SV *littlestr, I32 start_shift, I32 end_shift, I32 *oldposp, I32 last) |
1586 | __attribute__nonnull__(pTHX_1) | |
1587 | __attribute__nonnull__(pTHX_2) | |
1588 | __attribute__nonnull__(pTHX_5); | |
1589 | ||
864dbfa3 | 1590 | #if !defined(VMS) |
e1ec3a88 | 1591 | PERL_CALLCONV I32 Perl_setenv_getix(pTHX_ const char* nam); |
0cb96387 | 1592 | #endif |
1d7c1841 | 1593 | PERL_CALLCONV void Perl_setdefout(pTHX_ GV* gv); |
aec46f14 AL |
1594 | PERL_CALLCONV HEK* Perl_share_hek(pTHX_ const char* str, I32 len, U32 hash) |
1595 | __attribute__nonnull__(pTHX_1); | |
1596 | ||
1d7c1841 | 1597 | PERL_CALLCONV Signal_t Perl_sighandler(int sig); |
d36b6582 | 1598 | PERL_CALLCONV Signal_t Perl_csighandler(int sig); |
4373e329 | 1599 | PERL_CALLCONV SV** Perl_stack_grow(pTHX_ SV** sp, SV**p, int n) |
abb2c242 JH |
1600 | __attribute__nonnull__(pTHX_1) |
1601 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1602 | |
a3b680e6 | 1603 | PERL_CALLCONV I32 Perl_start_subparse(pTHX_ I32 is_format, U32 flags) |
abb2c242 | 1604 | __attribute__warn_unused_result__; |
a3b680e6 | 1605 | |
aec46f14 AL |
1606 | PERL_CALLCONV void Perl_sub_crush_depth(pTHX_ CV* cv) |
1607 | __attribute__nonnull__(pTHX_1); | |
1608 | ||
4373e329 | 1609 | PERL_CALLCONV bool Perl_sv_2bool(pTHX_ SV* sv) |
abb2c242 | 1610 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
1611 | |
1612 | PERL_CALLCONV CV* Perl_sv_2cv(pTHX_ SV* sv, HV** st, GV** gvp, I32 lref) | |
aec46f14 AL |
1613 | __attribute__nonnull__(pTHX_2) |
1614 | __attribute__nonnull__(pTHX_3); | |
f54cb97a AL |
1615 | |
1616 | PERL_CALLCONV IO* Perl_sv_2io(pTHX_ SV* sv) | |
abb2c242 | 1617 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
1618 | |
1619 | /* PERL_CALLCONV IV sv_2iv(pTHX_ SV* sv) | |
abb2c242 | 1620 | __attribute__nonnull__(pTHX_1); */ |
f54cb97a AL |
1621 | |
1622 | PERL_CALLCONV IV Perl_sv_2iv_flags(pTHX_ SV* sv, I32 flags) | |
abb2c242 | 1623 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
1624 | |
1625 | PERL_CALLCONV SV* Perl_sv_2mortal(pTHX_ SV* sv) | |
abb2c242 | 1626 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
1627 | |
1628 | PERL_CALLCONV NV Perl_sv_2nv(pTHX_ SV* sv) | |
abb2c242 | 1629 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1630 | |
4373e329 | 1631 | /* PERL_CALLCONV char* sv_2pv(pTHX_ SV* sv, STRLEN* lp) |
f49ed1da | 1632 | __attribute__nonnull__(pTHX_1); */ |
f54cb97a | 1633 | |
4373e329 | 1634 | PERL_CALLCONV char* Perl_sv_2pv_flags(pTHX_ SV* sv, STRLEN* lp, I32 flags) |
f49ed1da | 1635 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1636 | |
4373e329 | 1637 | PERL_CALLCONV char* Perl_sv_2pvutf8(pTHX_ SV* sv, STRLEN* lp) |
f49ed1da | 1638 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1639 | |
4373e329 | 1640 | PERL_CALLCONV char* Perl_sv_2pvbyte(pTHX_ SV* sv, STRLEN* lp) |
f49ed1da | 1641 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1642 | |
4373e329 | 1643 | PERL_CALLCONV char* Perl_sv_pvn_nomg(pTHX_ SV* sv, STRLEN* lp) |
f49ed1da | 1644 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1645 | |
4373e329 | 1646 | /* PERL_CALLCONV UV sv_2uv(pTHX_ SV* sv) |
abb2c242 | 1647 | __attribute__nonnull__(pTHX_1); */ |
f54cb97a | 1648 | |
4373e329 | 1649 | PERL_CALLCONV UV Perl_sv_2uv_flags(pTHX_ SV* sv, I32 flags) |
abb2c242 | 1650 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1651 | |
4373e329 | 1652 | PERL_CALLCONV IV Perl_sv_iv(pTHX_ SV* sv) |
abb2c242 | 1653 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1654 | |
4373e329 | 1655 | PERL_CALLCONV UV Perl_sv_uv(pTHX_ SV* sv) |
abb2c242 | 1656 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1657 | |
4373e329 | 1658 | PERL_CALLCONV NV Perl_sv_nv(pTHX_ SV* sv) |
abb2c242 | 1659 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1660 | |
4373e329 | 1661 | PERL_CALLCONV char* Perl_sv_pvn(pTHX_ SV *sv, STRLEN *len) |
abb2c242 JH |
1662 | __attribute__nonnull__(pTHX_1) |
1663 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1664 | |
4373e329 | 1665 | PERL_CALLCONV char* Perl_sv_pvutf8n(pTHX_ SV *sv, STRLEN *len) |
abb2c242 JH |
1666 | __attribute__nonnull__(pTHX_1) |
1667 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1668 | |
4373e329 | 1669 | PERL_CALLCONV char* Perl_sv_pvbyten(pTHX_ SV *sv, STRLEN *len) |
abb2c242 JH |
1670 | __attribute__nonnull__(pTHX_1) |
1671 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1672 | |
aec46f14 | 1673 | PERL_CALLCONV I32 Perl_sv_true(pTHX_ SV *sv); |
f54cb97a | 1674 | PERL_CALLCONV void Perl_sv_add_arena(pTHX_ char* ptr, U32 size, U32 flags) |
abb2c242 | 1675 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
1676 | |
1677 | PERL_CALLCONV int Perl_sv_backoff(pTHX_ SV* sv) | |
abb2c242 | 1678 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
1679 | |
1680 | PERL_CALLCONV SV* Perl_sv_bless(pTHX_ SV* sv, HV* stash) | |
abb2c242 JH |
1681 | __attribute__nonnull__(pTHX_1) |
1682 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1683 | |
894356b3 | 1684 | PERL_CALLCONV void Perl_sv_catpvf(pTHX_ SV* sv, const char* pat, ...) |
f54cb97a | 1685 | __attribute__format__(__printf__,pTHX_2,pTHX_3) |
aec46f14 AL |
1686 | __attribute__nonnull__(pTHX_1) |
1687 | __attribute__nonnull__(pTHX_2); | |
f54cb97a AL |
1688 | |
1689 | PERL_CALLCONV void Perl_sv_vcatpvf(pTHX_ SV* sv, const char* pat, va_list* args) | |
aec46f14 AL |
1690 | __attribute__nonnull__(pTHX_1) |
1691 | __attribute__nonnull__(pTHX_2); | |
f54cb97a AL |
1692 | |
1693 | PERL_CALLCONV void Perl_sv_catpv(pTHX_ SV* sv, const char* ptr) | |
aec46f14 AL |
1694 | __attribute__nonnull__(pTHX_1) |
1695 | __attribute__nonnull__(pTHX_2); | |
f54cb97a AL |
1696 | |
1697 | /* PERL_CALLCONV void sv_catpvn(pTHX_ SV* sv, const char* ptr, STRLEN len) | |
aec46f14 AL |
1698 | __attribute__nonnull__(pTHX_1) |
1699 | __attribute__nonnull__(pTHX_2); */ | |
f54cb97a AL |
1700 | |
1701 | /* PERL_CALLCONV void sv_catsv(pTHX_ SV* dsv, SV* ssv) | |
abb2c242 | 1702 | __attribute__nonnull__(pTHX_1); */ |
f54cb97a AL |
1703 | |
1704 | PERL_CALLCONV void Perl_sv_chop(pTHX_ SV* sv, const char* ptr) | |
abb2c242 | 1705 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1706 | |
5226ed68 | 1707 | PERL_CALLCONV I32 Perl_sv_clean_all(pTHX); |
1d7c1841 | 1708 | PERL_CALLCONV void Perl_sv_clean_objs(pTHX); |
f54cb97a | 1709 | PERL_CALLCONV void Perl_sv_clear(pTHX_ SV* sv) |
abb2c242 | 1710 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
1711 | |
1712 | PERL_CALLCONV I32 Perl_sv_cmp(pTHX_ SV* sv1, SV* sv2) | |
abb2c242 JH |
1713 | __attribute__nonnull__(pTHX_1) |
1714 | __attribute__nonnull__(pTHX_2); | |
f54cb97a AL |
1715 | |
1716 | PERL_CALLCONV I32 Perl_sv_cmp_locale(pTHX_ SV* sv1, SV* sv2) | |
abb2c242 JH |
1717 | __attribute__nonnull__(pTHX_1) |
1718 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1719 | |
864dbfa3 | 1720 | #if defined(USE_LOCALE_COLLATE) |
f54cb97a | 1721 | PERL_CALLCONV char* Perl_sv_collxfrm(pTHX_ SV* sv, STRLEN* nxp) |
1df70142 AL |
1722 | __attribute__nonnull__(pTHX_1) |
1723 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1724 | |
0cb96387 | 1725 | #endif |
4373e329 | 1726 | PERL_CALLCONV OP* Perl_sv_compile_2op(pTHX_ SV* sv, OP** startp, const char* code, PAD** padp) |
abb2c242 JH |
1727 | __attribute__nonnull__(pTHX_1) |
1728 | __attribute__nonnull__(pTHX_2) | |
1729 | __attribute__nonnull__(pTHX_3) | |
1730 | __attribute__nonnull__(pTHX_4); | |
f54cb97a | 1731 | |
4373e329 | 1732 | PERL_CALLCONV int Perl_getcwd_sv(pTHX_ SV* sv) |
abb2c242 | 1733 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
1734 | |
1735 | PERL_CALLCONV void Perl_sv_dec(pTHX_ SV* sv) | |
abb2c242 | 1736 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
1737 | |
1738 | PERL_CALLCONV void Perl_sv_dump(pTHX_ SV* sv) | |
abb2c242 | 1739 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1740 | |
4373e329 | 1741 | PERL_CALLCONV bool Perl_sv_derived_from(pTHX_ SV* sv, const char* name) |
abb2c242 JH |
1742 | __attribute__warn_unused_result__ |
1743 | __attribute__nonnull__(pTHX_1) | |
1744 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1745 | |
4373e329 | 1746 | PERL_CALLCONV I32 Perl_sv_eq(pTHX_ SV* sv1, SV* sv2) |
abb2c242 JH |
1747 | __attribute__nonnull__(pTHX_1) |
1748 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1749 | |
1d7c1841 | 1750 | PERL_CALLCONV void Perl_sv_free(pTHX_ SV* sv); |
4373e329 | 1751 | PERL_CALLCONV void Perl_sv_free2(pTHX_ SV* sv) |
abb2c242 | 1752 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1753 | |
1d7c1841 | 1754 | PERL_CALLCONV void Perl_sv_free_arenas(pTHX); |
4373e329 | 1755 | PERL_CALLCONV char* Perl_sv_gets(pTHX_ SV* sv, PerlIO* fp, I32 append) |
abb2c242 JH |
1756 | __attribute__nonnull__(pTHX_1) |
1757 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1758 | |
4373e329 | 1759 | PERL_CALLCONV char* Perl_sv_grow(pTHX_ SV* sv, STRLEN newlen) |
abb2c242 | 1760 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
1761 | |
1762 | PERL_CALLCONV void Perl_sv_inc(pTHX_ SV* sv) | |
abb2c242 | 1763 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1764 | |
4373e329 | 1765 | PERL_CALLCONV void Perl_sv_insert(pTHX_ SV* bigsv, STRLEN offset, STRLEN len, const char* little, STRLEN littlelen) |
abb2c242 JH |
1766 | __attribute__nonnull__(pTHX_1) |
1767 | __attribute__nonnull__(pTHX_4); | |
f54cb97a AL |
1768 | |
1769 | PERL_CALLCONV int Perl_sv_isa(pTHX_ SV* sv, const char* name) | |
aec46f14 | 1770 | __attribute__nonnull__(pTHX_2); |
f54cb97a | 1771 | |
aec46f14 | 1772 | PERL_CALLCONV int Perl_sv_isobject(pTHX_ SV* sv); |
9d4ba2ae AL |
1773 | PERL_CALLCONV STRLEN Perl_sv_len(pTHX_ SV* sv); |
1774 | PERL_CALLCONV STRLEN Perl_sv_len_utf8(pTHX_ SV* sv); | |
f54cb97a | 1775 | PERL_CALLCONV void Perl_sv_magic(pTHX_ SV* sv, SV* obj, int how, const char* name, I32 namlen) |
abb2c242 | 1776 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
1777 | |
1778 | PERL_CALLCONV MAGIC * Perl_sv_magicext(pTHX_ SV* sv, SV* obj, int how, const MGVTBL *vtbl, const char* name, I32 namlen) | |
abb2c242 | 1779 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1780 | |
4373e329 | 1781 | PERL_CALLCONV SV* Perl_sv_mortalcopy(pTHX_ SV* oldsv) |
1b6737cc AL |
1782 | __attribute__malloc__ |
1783 | __attribute__warn_unused_result__; | |
f54cb97a AL |
1784 | |
1785 | PERL_CALLCONV SV* Perl_sv_newmortal(pTHX) | |
abb2c242 | 1786 | __attribute__warn_unused_result__; |
f54cb97a | 1787 | |
1d7c1841 GS |
1788 | PERL_CALLCONV SV* Perl_sv_newref(pTHX_ SV* sv); |
1789 | PERL_CALLCONV char* Perl_sv_peek(pTHX_ SV* sv); | |
b464bac0 AL |
1790 | PERL_CALLCONV void Perl_sv_pos_u2b(pTHX_ SV* sv, I32* offsetp, I32* lenp) |
1791 | __attribute__nonnull__(pTHX_2); | |
1792 | ||
1793 | PERL_CALLCONV void Perl_sv_pos_b2u(pTHX_ SV* sv, I32* offsetp) | |
1794 | __attribute__nonnull__(pTHX_2); | |
1795 | ||
aec46f14 AL |
1796 | /* PERL_CALLCONV char* sv_pvn_force(pTHX_ SV* sv, STRLEN* lp) |
1797 | __attribute__nonnull__(pTHX_1); */ | |
1798 | ||
1799 | PERL_CALLCONV char* Perl_sv_pvutf8n_force(pTHX_ SV* sv, STRLEN* lp) | |
1800 | __attribute__nonnull__(pTHX_1); | |
1801 | ||
1802 | PERL_CALLCONV char* Perl_sv_pvbyten_force(pTHX_ SV* sv, STRLEN* lp) | |
1803 | __attribute__nonnull__(pTHX_1); | |
1804 | ||
1805 | PERL_CALLCONV char* Perl_sv_recode_to_utf8(pTHX_ SV* sv, SV *encoding) | |
1806 | __attribute__nonnull__(pTHX_1) | |
1807 | __attribute__nonnull__(pTHX_2); | |
1808 | ||
1809 | PERL_CALLCONV bool Perl_sv_cat_decode(pTHX_ SV* dsv, SV *encoding, SV *ssv, int *offset, char* tstr, int tlen) | |
1810 | __attribute__nonnull__(pTHX_1) | |
1811 | __attribute__nonnull__(pTHX_2) | |
1812 | __attribute__nonnull__(pTHX_3) | |
1813 | __attribute__nonnull__(pTHX_4) | |
1814 | __attribute__nonnull__(pTHX_5); | |
1815 | ||
a3b680e6 | 1816 | PERL_CALLCONV char* Perl_sv_reftype(pTHX_ const SV* sv, int ob) |
abb2c242 JH |
1817 | __attribute__warn_unused_result__ |
1818 | __attribute__nonnull__(pTHX_1); | |
a3b680e6 AL |
1819 | |
1820 | PERL_CALLCONV void Perl_sv_replace(pTHX_ SV* sv, SV* nsv) | |
abb2c242 JH |
1821 | __attribute__nonnull__(pTHX_1) |
1822 | __attribute__nonnull__(pTHX_2); | |
a3b680e6 | 1823 | |
1d7c1841 | 1824 | PERL_CALLCONV void Perl_sv_report_used(pTHX); |
504618e9 AL |
1825 | PERL_CALLCONV void Perl_sv_reset(pTHX_ const char* s, HV* stash) |
1826 | __attribute__nonnull__(pTHX_1); | |
1827 | ||
894356b3 | 1828 | PERL_CALLCONV void Perl_sv_setpvf(pTHX_ SV* sv, const char* pat, ...) |
aec46f14 AL |
1829 | __attribute__format__(__printf__,pTHX_2,pTHX_3) |
1830 | __attribute__nonnull__(pTHX_1) | |
1831 | __attribute__nonnull__(pTHX_2); | |
1832 | ||
1833 | PERL_CALLCONV void Perl_sv_vsetpvf(pTHX_ SV* sv, const char* pat, va_list* args) | |
1834 | __attribute__nonnull__(pTHX_1) | |
1835 | __attribute__nonnull__(pTHX_2); | |
1836 | ||
1837 | PERL_CALLCONV void Perl_sv_setiv(pTHX_ SV* sv, IV num) | |
1838 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 1839 | |
504618e9 AL |
1840 | PERL_CALLCONV void Perl_sv_setpviv(pTHX_ SV* sv, IV num) |
1841 | __attribute__nonnull__(pTHX_1); | |
1842 | ||
aec46f14 AL |
1843 | PERL_CALLCONV void Perl_sv_setuv(pTHX_ SV* sv, UV num) |
1844 | __attribute__nonnull__(pTHX_1); | |
1845 | ||
1846 | PERL_CALLCONV void Perl_sv_setnv(pTHX_ SV* sv, NV num) | |
1847 | __attribute__nonnull__(pTHX_1); | |
1848 | ||
1849 | PERL_CALLCONV SV* Perl_sv_setref_iv(pTHX_ SV* rv, const char* classname, IV iv) | |
1850 | __attribute__nonnull__(pTHX_1); | |
1851 | ||
1852 | PERL_CALLCONV SV* Perl_sv_setref_uv(pTHX_ SV* rv, const char* classname, UV uv) | |
1853 | __attribute__nonnull__(pTHX_1); | |
1854 | ||
1855 | PERL_CALLCONV SV* Perl_sv_setref_nv(pTHX_ SV* rv, const char* classname, NV nv) | |
1856 | __attribute__nonnull__(pTHX_1); | |
1857 | ||
1858 | PERL_CALLCONV SV* Perl_sv_setref_pv(pTHX_ SV* rv, const char* classname, void* pv) | |
1859 | __attribute__nonnull__(pTHX_1); | |
1860 | ||
1b6737cc | 1861 | PERL_CALLCONV SV* Perl_sv_setref_pvn(pTHX_ SV* rv, const char* classname, const char* pv, STRLEN n) |
aec46f14 | 1862 | __attribute__nonnull__(pTHX_1) |
1b6737cc AL |
1863 | __attribute__nonnull__(pTHX_3); |
1864 | ||
aec46f14 AL |
1865 | PERL_CALLCONV void Perl_sv_setpv(pTHX_ SV* sv, const char* ptr) |
1866 | __attribute__nonnull__(pTHX_1); | |
1867 | ||
4373e329 | 1868 | PERL_CALLCONV void Perl_sv_setpvn(pTHX_ SV* sv, const char* ptr, STRLEN len) |
abb2c242 | 1869 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1870 | |
aec46f14 AL |
1871 | /* PERL_CALLCONV void sv_setsv(pTHX_ SV* dsv, SV* ssv) |
1872 | __attribute__nonnull__(pTHX_1); */ | |
1873 | ||
1874 | PERL_CALLCONV void Perl_sv_taint(pTHX_ SV* sv) | |
1875 | __attribute__nonnull__(pTHX_1); | |
1876 | ||
a28509cc | 1877 | PERL_CALLCONV bool Perl_sv_tainted(pTHX_ SV* sv) |
aec46f14 AL |
1878 | __attribute__warn_unused_result__ |
1879 | __attribute__nonnull__(pTHX_1); | |
a28509cc | 1880 | |
f54cb97a | 1881 | PERL_CALLCONV int Perl_sv_unmagic(pTHX_ SV* sv, int type) |
abb2c242 | 1882 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
1883 | |
1884 | PERL_CALLCONV void Perl_sv_unref(pTHX_ SV* sv) | |
abb2c242 | 1885 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
1886 | |
1887 | PERL_CALLCONV void Perl_sv_unref_flags(pTHX_ SV* sv, U32 flags) | |
abb2c242 | 1888 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
1889 | |
1890 | PERL_CALLCONV void Perl_sv_untaint(pTHX_ SV* sv) | |
abb2c242 | 1891 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 1892 | |
63f97190 | 1893 | PERL_CALLCONV void Perl_sv_upgrade(pTHX_ SV* sv, U32 mt) |
abb2c242 | 1894 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
1895 | |
1896 | PERL_CALLCONV void Perl_sv_usepvn(pTHX_ SV* sv, char* ptr, STRLEN len) | |
abb2c242 | 1897 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
1898 | |
1899 | PERL_CALLCONV void Perl_sv_vcatpvfn(pTHX_ SV* sv, const char* pat, STRLEN patlen, va_list* args, SV** svargs, I32 svmax, bool *maybe_tainted) | |
abb2c242 JH |
1900 | __attribute__nonnull__(pTHX_1) |
1901 | __attribute__nonnull__(pTHX_2); | |
f54cb97a AL |
1902 | |
1903 | PERL_CALLCONV void Perl_sv_vsetpvfn(pTHX_ SV* sv, const char* pat, STRLEN patlen, va_list* args, SV** svargs, I32 svmax, bool *maybe_tainted) | |
abb2c242 JH |
1904 | __attribute__nonnull__(pTHX_1) |
1905 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1906 | |
aec46f14 AL |
1907 | PERL_CALLCONV NV Perl_str_to_version(pTHX_ SV *sv) |
1908 | __attribute__warn_unused_result__ | |
1909 | __attribute__nonnull__(pTHX_1); | |
1910 | ||
1911 | PERL_CALLCONV SV* Perl_swash_init(pTHX_ const char* pkg, const char* name, SV* listsv, I32 minbits, I32 none) | |
1912 | __attribute__nonnull__(pTHX_1) | |
1913 | __attribute__nonnull__(pTHX_2) | |
1914 | __attribute__nonnull__(pTHX_3); | |
1915 | ||
1916 | PERL_CALLCONV UV Perl_swash_fetch(pTHX_ SV *sv, const U8 *ptr, bool do_utf8) | |
1917 | __attribute__nonnull__(pTHX_1) | |
1918 | __attribute__nonnull__(pTHX_2); | |
1919 | ||
1d7c1841 | 1920 | PERL_CALLCONV void Perl_taint_env(pTHX); |
8772537c AL |
1921 | PERL_CALLCONV void Perl_taint_proper(pTHX_ const char* f, const char* s) |
1922 | __attribute__nonnull__(pTHX_2); | |
1923 | ||
f54cb97a | 1924 | PERL_CALLCONV UV Perl_to_utf8_case(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, SV **swash, const char *normal, const char *special) |
abb2c242 JH |
1925 | __attribute__nonnull__(pTHX_1) |
1926 | __attribute__nonnull__(pTHX_2); | |
f54cb97a AL |
1927 | |
1928 | PERL_CALLCONV UV Perl_to_utf8_lower(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp) | |
abb2c242 JH |
1929 | __attribute__nonnull__(pTHX_1) |
1930 | __attribute__nonnull__(pTHX_2); | |
f54cb97a AL |
1931 | |
1932 | PERL_CALLCONV UV Perl_to_utf8_upper(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp) | |
abb2c242 JH |
1933 | __attribute__nonnull__(pTHX_1) |
1934 | __attribute__nonnull__(pTHX_2); | |
f54cb97a AL |
1935 | |
1936 | PERL_CALLCONV UV Perl_to_utf8_title(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp) | |
abb2c242 JH |
1937 | __attribute__nonnull__(pTHX_1) |
1938 | __attribute__nonnull__(pTHX_2); | |
f54cb97a AL |
1939 | |
1940 | PERL_CALLCONV UV Perl_to_utf8_fold(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp) | |
abb2c242 JH |
1941 | __attribute__nonnull__(pTHX_1) |
1942 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1943 | |
864dbfa3 | 1944 | #if defined(UNLINK_ALL_VERSIONS) |
aec46f14 AL |
1945 | PERL_CALLCONV I32 Perl_unlnk(pTHX_ char* f) |
1946 | __attribute__nonnull__(pTHX_1); | |
1947 | ||
864dbfa3 | 1948 | #endif |
aec46f14 AL |
1949 | PERL_CALLCONV I32 Perl_unpack_str(pTHX_ const char *pat, const char *patend, const char *s, const char *strbeg, const char *strend, char **new_s, I32 ocnt, U32 flags) |
1950 | __attribute__nonnull__(pTHX_1) | |
1951 | __attribute__nonnull__(pTHX_2) | |
1952 | __attribute__nonnull__(pTHX_3) | |
1953 | __attribute__nonnull__(pTHX_5); | |
1954 | ||
1955 | PERL_CALLCONV I32 Perl_unpackstring(pTHX_ const char *pat, const char *patend, const char *s, const char *strend, U32 flags) | |
1956 | __attribute__nonnull__(pTHX_1) | |
1957 | __attribute__nonnull__(pTHX_2) | |
1958 | __attribute__nonnull__(pTHX_3) | |
1959 | __attribute__nonnull__(pTHX_4); | |
1960 | ||
1d7c1841 GS |
1961 | PERL_CALLCONV void Perl_unsharepvn(pTHX_ const char* sv, I32 len, U32 hash); |
1962 | PERL_CALLCONV void Perl_unshare_hek(pTHX_ HEK* hek); | |
aec46f14 AL |
1963 | PERL_CALLCONV void Perl_utilize(pTHX_ int aver, I32 floor, OP* version, OP* idop, OP* arg) |
1964 | __attribute__nonnull__(pTHX_4); | |
1965 | ||
1966 | PERL_CALLCONV U8* Perl_utf16_to_utf8(pTHX_ U8* p, U8 *d, I32 bytelen, I32 *newlen) | |
1967 | __attribute__nonnull__(pTHX_1) | |
1968 | __attribute__nonnull__(pTHX_2) | |
1969 | __attribute__nonnull__(pTHX_4); | |
1970 | ||
1971 | PERL_CALLCONV U8* Perl_utf16_to_utf8_reversed(pTHX_ U8* p, U8 *d, I32 bytelen, I32 *newlen) | |
1972 | __attribute__nonnull__(pTHX_1) | |
1973 | __attribute__nonnull__(pTHX_2) | |
1974 | __attribute__nonnull__(pTHX_4); | |
1975 | ||
4373e329 | 1976 | PERL_CALLCONV STRLEN Perl_utf8_length(pTHX_ const U8* s, const U8 *e) |
abb2c242 JH |
1977 | __attribute__warn_unused_result__ |
1978 | __attribute__pure__ | |
1979 | __attribute__nonnull__(pTHX_1) | |
1980 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1981 | |
4373e329 | 1982 | PERL_CALLCONV IV Perl_utf8_distance(pTHX_ const U8 *a, const U8 *b) |
abb2c242 JH |
1983 | __attribute__warn_unused_result__ |
1984 | __attribute__pure__ | |
1985 | __attribute__nonnull__(pTHX_1) | |
1986 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1987 | |
4373e329 | 1988 | PERL_CALLCONV U8* Perl_utf8_hop(pTHX_ const U8 *s, I32 off) |
abb2c242 JH |
1989 | __attribute__warn_unused_result__ |
1990 | __attribute__pure__ | |
1991 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 1992 | |
4373e329 | 1993 | PERL_CALLCONV U8* Perl_utf8_to_bytes(pTHX_ U8 *s, STRLEN *len) |
abb2c242 JH |
1994 | __attribute__nonnull__(pTHX_1) |
1995 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 1996 | |
aec46f14 AL |
1997 | PERL_CALLCONV U8* Perl_bytes_from_utf8(pTHX_ const U8 *s, STRLEN *len, bool *is_utf8) |
1998 | __attribute__nonnull__(pTHX_1) | |
1999 | __attribute__nonnull__(pTHX_2); | |
2000 | ||
2001 | PERL_CALLCONV U8* Perl_bytes_to_utf8(pTHX_ const U8 *s, STRLEN *len) | |
2002 | __attribute__nonnull__(pTHX_1) | |
2003 | __attribute__nonnull__(pTHX_2); | |
2004 | ||
2005 | PERL_CALLCONV UV Perl_utf8_to_uvchr(pTHX_ const U8 *s, STRLEN *retlen) | |
2006 | __attribute__nonnull__(pTHX_1); | |
2007 | ||
2008 | PERL_CALLCONV UV Perl_utf8_to_uvuni(pTHX_ const U8 *s, STRLEN *retlen) | |
2009 | __attribute__nonnull__(pTHX_1); | |
2010 | ||
2011 | PERL_CALLCONV UV Perl_utf8n_to_uvchr(pTHX_ const U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags) | |
2012 | __attribute__nonnull__(pTHX_1); | |
2013 | ||
2014 | PERL_CALLCONV UV Perl_utf8n_to_uvuni(pTHX_ const U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags) | |
2015 | __attribute__nonnull__(pTHX_1); | |
2016 | ||
4373e329 | 2017 | PERL_CALLCONV U8* Perl_uvchr_to_utf8(pTHX_ U8 *d, UV uv) |
abb2c242 | 2018 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2019 | |
4373e329 | 2020 | PERL_CALLCONV U8* Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv) |
abb2c242 | 2021 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2022 | |
4373e329 | 2023 | PERL_CALLCONV U8* Perl_uvchr_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags) |
abb2c242 | 2024 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2025 | |
4373e329 | 2026 | PERL_CALLCONV U8* Perl_uvuni_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags) |
abb2c242 | 2027 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2028 | |
e1ec3a88 | 2029 | PERL_CALLCONV char* Perl_pv_uni_display(pTHX_ SV *dsv, const U8 *spv, STRLEN len, STRLEN pvlim, UV flags); |
a3b680e6 | 2030 | PERL_CALLCONV char* Perl_sv_uni_display(pTHX_ SV *dsv, SV *ssv, STRLEN pvlim, UV flags) |
abb2c242 | 2031 | __attribute__warn_unused_result__; |
a3b680e6 | 2032 | |
aec46f14 AL |
2033 | PERL_CALLCONV void Perl_vivify_defelem(pTHX_ SV* sv) |
2034 | __attribute__nonnull__(pTHX_1); | |
2035 | ||
2036 | PERL_CALLCONV void Perl_vivify_ref(pTHX_ SV* sv, U32 to_what) | |
2037 | __attribute__nonnull__(pTHX_1); | |
2038 | ||
2039 | PERL_CALLCONV I32 Perl_wait4pid(pTHX_ Pid_t pid, int* statusp, int flags) | |
2040 | __attribute__nonnull__(pTHX_2); | |
2041 | ||
e1ec3a88 | 2042 | PERL_CALLCONV U32 Perl_parse_unicode_opts(pTHX_ const char **popt); |
132efe8b | 2043 | PERL_CALLCONV U32 Perl_seed(pTHX); |
255164ba DM |
2044 | PERL_CALLCONV UV Perl_get_hash_seed(pTHX) |
2045 | __attribute__warn_unused_result__; | |
2046 | ||
e1ec3a88 | 2047 | PERL_CALLCONV void Perl_report_evil_fh(pTHX_ const GV *gv, const IO *io, I32 op); |
29489e7c | 2048 | PERL_CALLCONV void Perl_report_uninit(pTHX_ SV* uninit_sv); |
894356b3 | 2049 | PERL_CALLCONV void Perl_warn(pTHX_ const char* pat, ...) |
aec46f14 AL |
2050 | __attribute__format__(__printf__,pTHX_1,pTHX_2) |
2051 | __attribute__nonnull__(pTHX_1); | |
2052 | ||
2053 | PERL_CALLCONV void Perl_vwarn(pTHX_ const char* pat, va_list* args) | |
2054 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 2055 | |
894356b3 | 2056 | PERL_CALLCONV void Perl_warner(pTHX_ U32 err, const char* pat, ...) |
aec46f14 AL |
2057 | __attribute__format__(__printf__,pTHX_2,pTHX_3) |
2058 | __attribute__nonnull__(pTHX_2); | |
2059 | ||
2060 | PERL_CALLCONV void Perl_vwarner(pTHX_ U32 err, const char* pat, va_list* args) | |
2061 | __attribute__nonnull__(pTHX_2); | |
2062 | ||
2063 | PERL_CALLCONV void Perl_watch(pTHX_ char** addr) | |
2064 | __attribute__nonnull__(pTHX_1); | |
2065 | ||
2066 | PERL_CALLCONV I32 Perl_whichsig(pTHX_ const char* sig) | |
2067 | __attribute__nonnull__(pTHX_1); | |
2068 | ||
2069 | PERL_CALLCONV void Perl_write_to_stderr(pTHX_ const char* message, int msglen) | |
2070 | __attribute__nonnull__(pTHX_1); | |
2071 | ||
2072 | PERL_CALLCONV int Perl_yyerror(pTHX_ const char* s) | |
2073 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 2074 | |
48cf72c8 | 2075 | PERL_CALLCONV int Perl_yylex(pTHX); |
1d7c1841 | 2076 | PERL_CALLCONV int Perl_yyparse(pTHX); |
aec46f14 AL |
2077 | PERL_CALLCONV int Perl_yywarn(pTHX_ const char* s) |
2078 | __attribute__nonnull__(pTHX_1); | |
2079 | ||
cea2e8a9 | 2080 | #if defined(MYMALLOC) |
aec46f14 AL |
2081 | PERL_CALLCONV void Perl_dump_mstats(pTHX_ char* s) |
2082 | __attribute__nonnull__(pTHX_1); | |
2083 | ||
255164ba DM |
2084 | PERL_CALLCONV int Perl_get_mstats(pTHX_ perl_mstats_t *buf, int buflen, int level) |
2085 | __attribute__warn_unused_result__ | |
2086 | __attribute__nonnull__(pTHX_1); | |
2087 | ||
0cb96387 | 2088 | #endif |
4373e329 | 2089 | PERL_CALLCONV Malloc_t Perl_safesysmalloc(MEM_SIZE nbytes) |
abb2c242 JH |
2090 | __attribute__malloc__ |
2091 | __attribute__warn_unused_result__; | |
f54cb97a | 2092 | |
4373e329 | 2093 | PERL_CALLCONV Malloc_t Perl_safesyscalloc(MEM_SIZE elements, MEM_SIZE size) |
abb2c242 JH |
2094 | __attribute__malloc__ |
2095 | __attribute__warn_unused_result__; | |
f54cb97a | 2096 | |
4373e329 | 2097 | PERL_CALLCONV Malloc_t Perl_safesysrealloc(Malloc_t where, MEM_SIZE nbytes) |
abb2c242 JH |
2098 | __attribute__malloc__ |
2099 | __attribute__warn_unused_result__; | |
f54cb97a | 2100 | |
1d7c1841 | 2101 | PERL_CALLCONV Free_t Perl_safesysfree(Malloc_t where); |
cea2e8a9 | 2102 | #if defined(PERL_GLOBAL_STRUCT) |
1d7c1841 | 2103 | PERL_CALLCONV struct perl_vars * Perl_GetVars(pTHX); |
77304e85 SH |
2104 | PERL_CALLCONV struct perl_vars* Perl_init_global_struct(pTHX); |
2105 | PERL_CALLCONV void Perl_free_global_struct(pTHX_ struct perl_vars*); | |
1d7c1841 GS |
2106 | #endif |
2107 | PERL_CALLCONV int Perl_runops_standard(pTHX); | |
2108 | PERL_CALLCONV int Perl_runops_debug(pTHX); | |
894356b3 | 2109 | PERL_CALLCONV void Perl_sv_catpvf_mg(pTHX_ SV *sv, const char* pat, ...) |
aec46f14 AL |
2110 | __attribute__format__(__printf__,pTHX_2,pTHX_3) |
2111 | __attribute__nonnull__(pTHX_1) | |
2112 | __attribute__nonnull__(pTHX_2); | |
2113 | ||
2114 | PERL_CALLCONV void Perl_sv_vcatpvf_mg(pTHX_ SV* sv, const char* pat, va_list* args) | |
2115 | __attribute__nonnull__(pTHX_1) | |
2116 | __attribute__nonnull__(pTHX_2); | |
2117 | ||
2118 | PERL_CALLCONV void Perl_sv_catpv_mg(pTHX_ SV *sv, const char *ptr) | |
2119 | __attribute__nonnull__(pTHX_1) | |
2120 | __attribute__nonnull__(pTHX_2); | |
2121 | ||
2122 | PERL_CALLCONV void Perl_sv_catpvn_mg(pTHX_ SV *sv, const char *ptr, STRLEN len) | |
2123 | __attribute__nonnull__(pTHX_1) | |
2124 | __attribute__nonnull__(pTHX_2); | |
2125 | ||
2126 | PERL_CALLCONV void Perl_sv_catsv_mg(pTHX_ SV *dstr, SV *sstr) | |
2127 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 2128 | |
894356b3 | 2129 | PERL_CALLCONV void Perl_sv_setpvf_mg(pTHX_ SV *sv, const char* pat, ...) |
aec46f14 AL |
2130 | __attribute__format__(__printf__,pTHX_2,pTHX_3) |
2131 | __attribute__nonnull__(pTHX_1) | |
2132 | __attribute__nonnull__(pTHX_2); | |
2133 | ||
2134 | PERL_CALLCONV void Perl_sv_vsetpvf_mg(pTHX_ SV* sv, const char* pat, va_list* args) | |
2135 | __attribute__nonnull__(pTHX_1) | |
2136 | __attribute__nonnull__(pTHX_2); | |
2137 | ||
2138 | PERL_CALLCONV void Perl_sv_setiv_mg(pTHX_ SV *sv, IV i) | |
2139 | __attribute__nonnull__(pTHX_1); | |
f54cb97a | 2140 | |
504618e9 AL |
2141 | PERL_CALLCONV void Perl_sv_setpviv_mg(pTHX_ SV *sv, IV iv) |
2142 | __attribute__nonnull__(pTHX_1); | |
2143 | ||
aec46f14 AL |
2144 | PERL_CALLCONV void Perl_sv_setuv_mg(pTHX_ SV *sv, UV u) |
2145 | __attribute__nonnull__(pTHX_1); | |
2146 | ||
2147 | PERL_CALLCONV void Perl_sv_setnv_mg(pTHX_ SV *sv, NV num) | |
2148 | __attribute__nonnull__(pTHX_1); | |
2149 | ||
2150 | PERL_CALLCONV void Perl_sv_setpv_mg(pTHX_ SV *sv, const char *ptr) | |
2151 | __attribute__nonnull__(pTHX_1); | |
2152 | ||
2153 | PERL_CALLCONV void Perl_sv_setpvn_mg(pTHX_ SV *sv, const char *ptr, STRLEN len) | |
2154 | __attribute__nonnull__(pTHX_1) | |
2155 | __attribute__nonnull__(pTHX_2); | |
2156 | ||
2157 | PERL_CALLCONV void Perl_sv_setsv_mg(pTHX_ SV *dstr, SV *sstr) | |
2158 | __attribute__nonnull__(pTHX_1); | |
2159 | ||
2160 | PERL_CALLCONV void Perl_sv_usepvn_mg(pTHX_ SV *sv, char *ptr, STRLEN len) | |
2161 | __attribute__nonnull__(pTHX_1); | |
2162 | ||
2163 | PERL_CALLCONV MGVTBL* Perl_get_vtbl(pTHX_ int vtbl_id) | |
2164 | __attribute__warn_unused_result__; | |
2165 | ||
2166 | PERL_CALLCONV char* Perl_pv_display(pTHX_ SV *dsv, const char *pv, STRLEN cur, STRLEN len, STRLEN pvlim) | |
2167 | __attribute__nonnull__(pTHX_1) | |
2168 | __attribute__nonnull__(pTHX_2); | |
2169 | ||
894356b3 | 2170 | PERL_CALLCONV void Perl_dump_indent(pTHX_ I32 level, PerlIO *file, const char* pat, ...) |
1b6737cc | 2171 | __attribute__format__(__printf__,pTHX_3,pTHX_4) |
aec46f14 AL |
2172 | __attribute__nonnull__(pTHX_2) |
2173 | __attribute__nonnull__(pTHX_3); | |
1b6737cc AL |
2174 | |
2175 | PERL_CALLCONV void Perl_dump_vindent(pTHX_ I32 level, PerlIO *file, const char* pat, va_list *args) | |
aec46f14 AL |
2176 | __attribute__nonnull__(pTHX_2) |
2177 | __attribute__nonnull__(pTHX_3); | |
1b6737cc AL |
2178 | |
2179 | PERL_CALLCONV void Perl_do_gv_dump(pTHX_ I32 level, PerlIO *file, const char *name, GV *sv) | |
aec46f14 AL |
2180 | __attribute__nonnull__(pTHX_2) |
2181 | __attribute__nonnull__(pTHX_3) | |
2182 | __attribute__nonnull__(pTHX_4); | |
1b6737cc AL |
2183 | |
2184 | PERL_CALLCONV void Perl_do_gvgv_dump(pTHX_ I32 level, PerlIO *file, const char *name, GV *sv) | |
aec46f14 AL |
2185 | __attribute__nonnull__(pTHX_2) |
2186 | __attribute__nonnull__(pTHX_3) | |
2187 | __attribute__nonnull__(pTHX_4); | |
1b6737cc AL |
2188 | |
2189 | PERL_CALLCONV void Perl_do_hv_dump(pTHX_ I32 level, PerlIO *file, const char *name, HV *sv) | |
aec46f14 AL |
2190 | __attribute__nonnull__(pTHX_2) |
2191 | __attribute__nonnull__(pTHX_3) | |
2192 | __attribute__nonnull__(pTHX_4); | |
1b6737cc AL |
2193 | |
2194 | PERL_CALLCONV void Perl_do_magic_dump(pTHX_ I32 level, PerlIO *file, const MAGIC *mg, I32 nest, I32 maxnest, bool dumpops, STRLEN pvlim) | |
aec46f14 AL |
2195 | __attribute__nonnull__(pTHX_2) |
2196 | __attribute__nonnull__(pTHX_3); | |
1b6737cc AL |
2197 | |
2198 | PERL_CALLCONV void Perl_do_op_dump(pTHX_ I32 level, PerlIO *file, const OP *o) | |
2199 | __attribute__nonnull__(pTHX_2); | |
2200 | ||
2201 | PERL_CALLCONV void Perl_do_pmop_dump(pTHX_ I32 level, PerlIO *file, const PMOP *pm) | |
2202 | __attribute__nonnull__(pTHX_2); | |
2203 | ||
2204 | PERL_CALLCONV void Perl_do_sv_dump(pTHX_ I32 level, PerlIO *file, SV *sv, I32 nest, I32 maxnest, bool dumpops, STRLEN pvlim) | |
2205 | __attribute__nonnull__(pTHX_2); | |
2206 | ||
6867be6d | 2207 | PERL_CALLCONV void Perl_magic_dump(pTHX_ const MAGIC *mg); |
1d7c1841 | 2208 | PERL_CALLCONV void Perl_reginitcolors(pTHX); |
aec46f14 AL |
2209 | PERL_CALLCONV char* Perl_sv_2pv_nolen(pTHX_ SV* sv) |
2210 | __attribute__warn_unused_result__ | |
2211 | __attribute__nonnull__(pTHX_1); | |
2212 | ||
2213 | PERL_CALLCONV char* Perl_sv_2pvutf8_nolen(pTHX_ SV* sv) | |
2214 | __attribute__warn_unused_result__ | |
2215 | __attribute__nonnull__(pTHX_1); | |
2216 | ||
2217 | PERL_CALLCONV char* Perl_sv_2pvbyte_nolen(pTHX_ SV* sv) | |
2218 | __attribute__warn_unused_result__ | |
2219 | __attribute__nonnull__(pTHX_1); | |
2220 | ||
f75877b5 SH |
2221 | /* PERL_CALLCONV char* sv_pv(pTHX_ SV *sv) |
2222 | __attribute__warn_unused_result__ | |
2223 | __attribute__nonnull__(pTHX_1); */ | |
2224 | ||
2225 | /* PERL_CALLCONV char* sv_pvutf8(pTHX_ SV *sv) | |
2226 | __attribute__warn_unused_result__ | |
2227 | __attribute__nonnull__(pTHX_1); */ | |
2228 | ||
2229 | /* PERL_CALLCONV char* sv_pvbyte(pTHX_ SV *sv) | |
2230 | __attribute__warn_unused_result__ | |
2231 | __attribute__nonnull__(pTHX_1); */ | |
2232 | ||
2233 | /* PERL_CALLCONV STRLEN sv_utf8_upgrade(pTHX_ SV *sv) | |
2234 | __attribute__nonnull__(pTHX_1); */ | |
2235 | ||
2236 | PERL_CALLCONV bool Perl_sv_utf8_downgrade(pTHX_ SV *sv, bool fail_ok) | |
2237 | __attribute__nonnull__(pTHX_1); | |
2238 | ||
2239 | PERL_CALLCONV void Perl_sv_utf8_encode(pTHX_ SV *sv) | |
2240 | __attribute__nonnull__(pTHX_1); | |
2241 | ||
2242 | PERL_CALLCONV bool Perl_sv_utf8_decode(pTHX_ SV *sv) | |
2243 | __attribute__nonnull__(pTHX_1); | |
2244 | ||
2245 | PERL_CALLCONV void Perl_sv_force_normal(pTHX_ SV *sv) | |
2246 | __attribute__nonnull__(pTHX_1); | |
2247 | ||
2248 | PERL_CALLCONV void Perl_sv_force_normal_flags(pTHX_ SV *sv, U32 flags) | |
2249 | __attribute__nonnull__(pTHX_1); | |
2250 | ||
1d7c1841 | 2251 | PERL_CALLCONV void Perl_tmps_grow(pTHX_ I32 n); |
f75877b5 SH |
2252 | PERL_CALLCONV SV* Perl_sv_rvweaken(pTHX_ SV *sv) |
2253 | __attribute__nonnull__(pTHX_1); | |
2254 | ||
2255 | PERL_CALLCONV int Perl_magic_killbackrefs(pTHX_ SV *sv, MAGIC *mg) | |
2256 | __attribute__nonnull__(pTHX_1) | |
2257 | __attribute__nonnull__(pTHX_2); | |
2258 | ||
1d7c1841 GS |
2259 | PERL_CALLCONV OP* Perl_newANONATTRSUB(pTHX_ I32 floor, OP *proto, OP *attrs, OP *block); |
2260 | PERL_CALLCONV CV* Perl_newATTRSUB(pTHX_ I32 floor, OP *o, OP *proto, OP *attrs, OP *block); | |
f54cb97a | 2261 | PERL_CALLCONV void Perl_newMYSUB(pTHX_ I32 floor, OP *o, OP *proto, OP *attrs, OP *block) |
abb2c242 | 2262 | __attribute__noreturn__; |
f54cb97a | 2263 | |
4373e329 | 2264 | PERL_CALLCONV OP * Perl_my_attrs(pTHX_ OP *o, OP *attrs) |
abb2c242 | 2265 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2266 | |
1d7c1841 GS |
2267 | PERL_CALLCONV void Perl_boot_core_xsutils(pTHX); |
2268 | #if defined(USE_ITHREADS) | |
53c1dcc0 AL |
2269 | PERL_CALLCONV PERL_CONTEXT* Perl_cx_dup(pTHX_ PERL_CONTEXT* cx, I32 ix, I32 max, CLONE_PARAMS* param) |
2270 | __attribute__malloc__ | |
aec46f14 AL |
2271 | __attribute__warn_unused_result__ |
2272 | __attribute__nonnull__(pTHX_4); | |
53c1dcc0 AL |
2273 | |
2274 | PERL_CALLCONV PERL_SI* Perl_si_dup(pTHX_ PERL_SI* si, CLONE_PARAMS* param) | |
2275 | __attribute__malloc__ | |
aec46f14 AL |
2276 | __attribute__warn_unused_result__ |
2277 | __attribute__nonnull__(pTHX_2); | |
53c1dcc0 AL |
2278 | |
2279 | PERL_CALLCONV ANY* Perl_ss_dup(pTHX_ PerlInterpreter* proto_perl, CLONE_PARAMS* param) | |
2280 | __attribute__malloc__ | |
2281 | __attribute__warn_unused_result__ | |
aec46f14 AL |
2282 | __attribute__nonnull__(pTHX_1) |
2283 | __attribute__nonnull__(pTHX_2); | |
53c1dcc0 AL |
2284 | |
2285 | PERL_CALLCONV void* Perl_any_dup(pTHX_ void* v, const PerlInterpreter* proto_perl) | |
2286 | __attribute__malloc__ | |
2287 | __attribute__warn_unused_result__ | |
abb2c242 | 2288 | __attribute__nonnull__(pTHX_2); |
f54cb97a | 2289 | |
53c1dcc0 AL |
2290 | PERL_CALLCONV HE* Perl_he_dup(pTHX_ HE* e, bool shared, CLONE_PARAMS* param) |
2291 | __attribute__malloc__ | |
aec46f14 AL |
2292 | __attribute__warn_unused_result__ |
2293 | __attribute__nonnull__(pTHX_3); | |
53c1dcc0 AL |
2294 | |
2295 | PERL_CALLCONV HEK* Perl_hek_dup(pTHX_ HEK* e, CLONE_PARAMS* param) | |
2296 | __attribute__malloc__ | |
aec46f14 AL |
2297 | __attribute__warn_unused_result__ |
2298 | __attribute__nonnull__(pTHX_2); | |
53c1dcc0 AL |
2299 | |
2300 | PERL_CALLCONV REGEXP* Perl_re_dup(pTHX_ const REGEXP* r, CLONE_PARAMS* param) | |
2301 | __attribute__malloc__ | |
aec46f14 AL |
2302 | __attribute__warn_unused_result__ |
2303 | __attribute__nonnull__(pTHX_2); | |
53c1dcc0 AL |
2304 | |
2305 | PERL_CALLCONV PerlIO* Perl_fp_dup(pTHX_ PerlIO* fp, char type, CLONE_PARAMS* param) | |
2306 | __attribute__malloc__ | |
aec46f14 AL |
2307 | __attribute__warn_unused_result__ |
2308 | __attribute__nonnull__(pTHX_3); | |
53c1dcc0 AL |
2309 | |
2310 | PERL_CALLCONV DIR* Perl_dirp_dup(pTHX_ DIR* dp) | |
2311 | __attribute__malloc__ | |
2312 | __attribute__warn_unused_result__; | |
2313 | ||
2314 | PERL_CALLCONV GP* Perl_gp_dup(pTHX_ GP* gp, CLONE_PARAMS* param) | |
2315 | __attribute__malloc__ | |
aec46f14 AL |
2316 | __attribute__warn_unused_result__ |
2317 | __attribute__nonnull__(pTHX_2); | |
53c1dcc0 AL |
2318 | |
2319 | PERL_CALLCONV MAGIC* Perl_mg_dup(pTHX_ MAGIC* mg, CLONE_PARAMS* param) | |
2320 | __attribute__malloc__ | |
2321 | __attribute__warn_unused_result__ | |
aec46f14 | 2322 | __attribute__nonnull__(pTHX_2); |
53c1dcc0 AL |
2323 | |
2324 | PERL_CALLCONV SV* Perl_sv_dup(pTHX_ SV* sstr, CLONE_PARAMS* param) | |
2325 | __attribute__malloc__ | |
2326 | __attribute__warn_unused_result__ | |
aec46f14 | 2327 | __attribute__nonnull__(pTHX_2); |
f54cb97a | 2328 | |
53c1dcc0 AL |
2329 | PERL_CALLCONV void Perl_rvpv_dup(pTHX_ SV* dstr, SV *sstr, CLONE_PARAMS* param) |
2330 | __attribute__nonnull__(pTHX_1) | |
aec46f14 AL |
2331 | __attribute__nonnull__(pTHX_2) |
2332 | __attribute__nonnull__(pTHX_3); | |
53c1dcc0 AL |
2333 | |
2334 | PERL_CALLCONV PTR_TBL_t* Perl_ptr_table_new(pTHX) | |
2335 | __attribute__malloc__ | |
2336 | __attribute__warn_unused_result__; | |
2337 | ||
2338 | PERL_CALLCONV void* Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *tbl, const void *sv) | |
2339 | __attribute__malloc__ | |
2340 | __attribute__warn_unused_result__ | |
2341 | __attribute__nonnull__(pTHX_1) | |
2342 | __attribute__nonnull__(pTHX_2); | |
2343 | ||
2344 | PERL_CALLCONV void Perl_ptr_table_store(pTHX_ PTR_TBL_t *tbl, const void *oldsv, void *newsv) | |
2345 | __attribute__nonnull__(pTHX_1) | |
2346 | __attribute__nonnull__(pTHX_3); | |
2347 | ||
4373e329 | 2348 | PERL_CALLCONV void Perl_ptr_table_split(pTHX_ PTR_TBL_t *tbl) |
abb2c242 | 2349 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2350 | |
690cf326 NIS |
2351 | PERL_CALLCONV void Perl_ptr_table_clear(pTHX_ PTR_TBL_t *tbl); |
2352 | PERL_CALLCONV void Perl_ptr_table_free(pTHX_ PTR_TBL_t *tbl); | |
504618e9 AL |
2353 | # if defined(HAVE_INTERP_INTERN) |
2354 | PERL_CALLCONV void Perl_sys_intern_dup(pTHX_ struct interp_intern* src, struct interp_intern* dst) | |
2355 | __attribute__nonnull__(pTHX_1) | |
2356 | __attribute__nonnull__(pTHX_2); | |
2357 | ||
ddacffcf SH |
2358 | # endif |
2359 | #endif | |
2360 | #if defined(HAVE_INTERP_INTERN) | |
3dbbd0f5 GS |
2361 | PERL_CALLCONV void Perl_sys_intern_clear(pTHX); |
2362 | PERL_CALLCONV void Perl_sys_intern_init(pTHX); | |
2363 | #endif | |
cae16f1a | 2364 | |
4373e329 | 2365 | PERL_CALLCONV char * Perl_custom_op_name(pTHX_ const OP* op) |
53c1dcc0 | 2366 | __attribute__warn_unused_result__ |
abb2c242 | 2367 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2368 | |
4373e329 | 2369 | PERL_CALLCONV char * Perl_custom_op_desc(pTHX_ const OP* op) |
53c1dcc0 | 2370 | __attribute__warn_unused_result__ |
abb2c242 | 2371 | __attribute__nonnull__(pTHX_1); |
cae16f1a | 2372 | |
f54cb97a | 2373 | |
f8c7b90f | 2374 | #if defined(PERL_OLD_COPY_ON_WRITE) |
aec46f14 AL |
2375 | PERL_CALLCONV int Perl_sv_release_IVX(pTHX_ SV *sv) |
2376 | __attribute__nonnull__(pTHX_1); | |
2377 | ||
765f542d NC |
2378 | #endif |
2379 | ||
68795e93 NIS |
2380 | PERL_CALLCONV void Perl_sv_nosharing(pTHX_ SV *); |
2381 | PERL_CALLCONV void Perl_sv_nolocking(pTHX_ SV *); | |
2382 | PERL_CALLCONV void Perl_sv_nounlocking(pTHX_ SV *); | |
62375a60 | 2383 | PERL_CALLCONV int Perl_nothreadhook(pTHX); |
1d7c1841 | 2384 | |
1d7c1841 | 2385 | END_EXTERN_C |
1d7c1841 | 2386 | |
0cb96387 | 2387 | #if defined(PERL_IN_DOOP_C) || defined(PERL_DECL_PROT) |
f54cb97a | 2388 | STATIC I32 S_do_trans_simple(pTHX_ SV *sv) |
53c1dcc0 | 2389 | __attribute__warn_unused_result__ |
abb2c242 | 2390 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
2391 | |
2392 | STATIC I32 S_do_trans_count(pTHX_ SV *sv) | |
53c1dcc0 | 2393 | __attribute__warn_unused_result__ |
abb2c242 | 2394 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
2395 | |
2396 | STATIC I32 S_do_trans_complex(pTHX_ SV *sv) | |
53c1dcc0 | 2397 | __attribute__warn_unused_result__ |
abb2c242 | 2398 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
2399 | |
2400 | STATIC I32 S_do_trans_simple_utf8(pTHX_ SV *sv) | |
53c1dcc0 | 2401 | __attribute__warn_unused_result__ |
abb2c242 | 2402 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
2403 | |
2404 | STATIC I32 S_do_trans_count_utf8(pTHX_ SV *sv) | |
53c1dcc0 | 2405 | __attribute__warn_unused_result__ |
abb2c242 | 2406 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
2407 | |
2408 | STATIC I32 S_do_trans_complex_utf8(pTHX_ SV *sv) | |
53c1dcc0 | 2409 | __attribute__warn_unused_result__ |
abb2c242 | 2410 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2411 | |
cea2e8a9 | 2412 | #endif |
1d7c1841 | 2413 | |
0cb96387 | 2414 | #if defined(PERL_IN_GV_C) || defined(PERL_DECL_PROT) |
53c1dcc0 AL |
2415 | STATIC void S_gv_init_sv(pTHX_ GV *gv, I32 sv_type) |
2416 | __attribute__nonnull__(pTHX_1); | |
2417 | ||
a3b680e6 | 2418 | STATIC void S_require_errno(pTHX_ GV *gv) |
abb2c242 | 2419 | __attribute__nonnull__(pTHX_1); |
a3b680e6 | 2420 | |
864dbfa3 | 2421 | #endif |
1d7c1841 | 2422 | |
0cb96387 | 2423 | #if defined(PERL_IN_HV_C) || defined(PERL_DECL_PROT) |
53c1dcc0 AL |
2424 | STATIC void S_hsplit(pTHX_ HV *hv) |
2425 | __attribute__nonnull__(pTHX_1); | |
2426 | ||
3abe233e AL |
2427 | STATIC void S_hfreeentries(pTHX_ HV *hv) |
2428 | __attribute__nonnull__(pTHX_1); | |
2429 | ||
1df70142 | 2430 | STATIC HE* S_new_he(pTHX) |
53c1dcc0 | 2431 | __attribute__malloc__ |
1df70142 AL |
2432 | __attribute__warn_unused_result__; |
2433 | ||
1df70142 | 2434 | STATIC HEK* S_save_hek_flags(pTHX_ const char *str, I32 len, U32 hash, int flags) |
53c1dcc0 | 2435 | __attribute__malloc__ |
1df70142 AL |
2436 | __attribute__warn_unused_result__ |
2437 | __attribute__nonnull__(pTHX_1); | |
2438 | ||
2439 | STATIC void S_hv_magic_check(pTHX_ HV *hv, bool *needs_copy, bool *needs_store) | |
2440 | __attribute__nonnull__(pTHX_1) | |
2441 | __attribute__nonnull__(pTHX_2) | |
2442 | __attribute__nonnull__(pTHX_3); | |
2443 | ||
97ddebaf | 2444 | STATIC void S_unshare_hek_or_pvn(pTHX_ const HEK* hek, const char* str, I32 len, U32 hash); |
6e838c70 | 2445 | STATIC HEK* S_share_hek_flags(pTHX_ const char* sv, I32 len, U32 hash, int flags) |
1b6737cc AL |
2446 | __attribute__warn_unused_result__ |
2447 | __attribute__nonnull__(pTHX_1); | |
1df70142 | 2448 | |
f54cb97a | 2449 | STATIC void S_hv_notallowed(pTHX_ int flags, const char *key, I32 klen, const char *msg) |
1df70142 AL |
2450 | __attribute__noreturn__ |
2451 | __attribute__nonnull__(pTHX_2) | |
2452 | __attribute__nonnull__(pTHX_4); | |
f54cb97a | 2453 | |
53c1dcc0 AL |
2454 | STATIC struct xpvhv_aux* S_hv_auxinit(pTHX_ HV *hv) |
2455 | __attribute__nonnull__(pTHX_1); | |
2456 | ||
aec46f14 AL |
2457 | STATIC SV* S_hv_delete_common(pTHX_ HV* tb, SV* keysv, const char* key, STRLEN klen, int k_flags, I32 d_flags, U32 hash); |
2458 | STATIC HE* S_hv_fetch_common(pTHX_ HV* tb, SV* keysv, const char* key, STRLEN klen, int flags, int action, SV* val, U32 hash); | |
864dbfa3 | 2459 | #endif |
1d7c1841 | 2460 | |
0cb96387 | 2461 | #if defined(PERL_IN_MG_C) || defined(PERL_DECL_PROT) |
504618e9 AL |
2462 | STATIC void S_save_magic(pTHX_ I32 mgs_ix, SV *sv) |
2463 | __attribute__nonnull__(pTHX_2); | |
2464 | ||
2465 | STATIC int S_magic_methpack(pTHX_ SV *sv, const MAGIC *mg, const char *meth) | |
2466 | __attribute__nonnull__(pTHX_1) | |
2467 | __attribute__nonnull__(pTHX_2) | |
2468 | __attribute__nonnull__(pTHX_3); | |
2469 | ||
2470 | STATIC int S_magic_methcall(pTHX_ SV *sv, const MAGIC *mg, const char *meth, I32 f, int n, SV *val) | |
2471 | __attribute__nonnull__(pTHX_1) | |
2472 | __attribute__nonnull__(pTHX_2) | |
2473 | __attribute__nonnull__(pTHX_3); | |
2474 | ||
8772537c AL |
2475 | STATIC void S_restore_magic(pTHX_ const void *p) |
2476 | __attribute__nonnull__(pTHX_1); | |
2477 | ||
2478 | STATIC void S_unwind_handler_stack(pTHX_ const void *p) | |
2479 | __attribute__nonnull__(pTHX_1); | |
2480 | ||
2481 | ||
864dbfa3 | 2482 | #endif |
1d7c1841 | 2483 | |
0cb96387 | 2484 | #if defined(PERL_IN_OP_C) || defined(PERL_DECL_PROT) |
504618e9 AL |
2485 | PERL_CALLCONV OP* Perl_ck_anoncode(pTHX_ OP *o) |
2486 | __attribute__warn_unused_result__ | |
2487 | __attribute__nonnull__(pTHX_1); | |
2488 | ||
2489 | PERL_CALLCONV OP* Perl_ck_bitop(pTHX_ OP *o) | |
2490 | __attribute__warn_unused_result__ | |
2491 | __attribute__nonnull__(pTHX_1); | |
2492 | ||
2493 | PERL_CALLCONV OP* Perl_ck_concat(pTHX_ OP *o) | |
2494 | __attribute__warn_unused_result__ | |
2495 | __attribute__nonnull__(pTHX_1); | |
2496 | ||
2497 | PERL_CALLCONV OP* Perl_ck_defined(pTHX_ OP *o) | |
2498 | __attribute__warn_unused_result__ | |
2499 | __attribute__nonnull__(pTHX_1); | |
2500 | ||
2501 | PERL_CALLCONV OP* Perl_ck_delete(pTHX_ OP *o) | |
2502 | __attribute__warn_unused_result__ | |
2503 | __attribute__nonnull__(pTHX_1); | |
2504 | ||
2505 | PERL_CALLCONV OP* Perl_ck_die(pTHX_ OP *o) | |
2506 | __attribute__warn_unused_result__ | |
2507 | __attribute__nonnull__(pTHX_1); | |
2508 | ||
2509 | PERL_CALLCONV OP* Perl_ck_eof(pTHX_ OP *o) | |
2510 | __attribute__warn_unused_result__ | |
2511 | __attribute__nonnull__(pTHX_1); | |
2512 | ||
2513 | PERL_CALLCONV OP* Perl_ck_eval(pTHX_ OP *o) | |
2514 | __attribute__warn_unused_result__ | |
2515 | __attribute__nonnull__(pTHX_1); | |
2516 | ||
2517 | PERL_CALLCONV OP* Perl_ck_exec(pTHX_ OP *o) | |
2518 | __attribute__warn_unused_result__ | |
2519 | __attribute__nonnull__(pTHX_1); | |
2520 | ||
2521 | PERL_CALLCONV OP* Perl_ck_exists(pTHX_ OP *o) | |
2522 | __attribute__warn_unused_result__ | |
2523 | __attribute__nonnull__(pTHX_1); | |
2524 | ||
2525 | PERL_CALLCONV OP* Perl_ck_exit(pTHX_ OP *o) | |
2526 | __attribute__warn_unused_result__ | |
2527 | __attribute__nonnull__(pTHX_1); | |
2528 | ||
2529 | PERL_CALLCONV OP* Perl_ck_ftst(pTHX_ OP *o) | |
2530 | __attribute__warn_unused_result__ | |
2531 | __attribute__nonnull__(pTHX_1); | |
2532 | ||
2533 | PERL_CALLCONV OP* Perl_ck_fun(pTHX_ OP *o) | |
2534 | __attribute__warn_unused_result__ | |
2535 | __attribute__nonnull__(pTHX_1); | |
2536 | ||
2537 | PERL_CALLCONV OP* Perl_ck_glob(pTHX_ OP *o) | |
2538 | __attribute__warn_unused_result__ | |
2539 | __attribute__nonnull__(pTHX_1); | |
2540 | ||
2541 | PERL_CALLCONV OP* Perl_ck_grep(pTHX_ OP *o) | |
2542 | __attribute__warn_unused_result__ | |
2543 | __attribute__nonnull__(pTHX_1); | |
2544 | ||
2545 | PERL_CALLCONV OP* Perl_ck_index(pTHX_ OP *o) | |
2546 | __attribute__warn_unused_result__ | |
2547 | __attribute__nonnull__(pTHX_1); | |
2548 | ||
2549 | PERL_CALLCONV OP* Perl_ck_join(pTHX_ OP *o) | |
2550 | __attribute__warn_unused_result__ | |
2551 | __attribute__nonnull__(pTHX_1); | |
2552 | ||
2553 | PERL_CALLCONV OP* Perl_ck_lengthconst(pTHX_ OP *o) | |
2554 | __attribute__warn_unused_result__ | |
2555 | __attribute__nonnull__(pTHX_1); | |
2556 | ||
2557 | PERL_CALLCONV OP* Perl_ck_lfun(pTHX_ OP *o) | |
2558 | __attribute__warn_unused_result__ | |
2559 | __attribute__nonnull__(pTHX_1); | |
2560 | ||
2561 | PERL_CALLCONV OP* Perl_ck_listiob(pTHX_ OP *o) | |
2562 | __attribute__warn_unused_result__ | |
2563 | __attribute__nonnull__(pTHX_1); | |
2564 | ||
2565 | PERL_CALLCONV OP* Perl_ck_match(pTHX_ OP *o) | |
2566 | __attribute__warn_unused_result__ | |
2567 | __attribute__nonnull__(pTHX_1); | |
2568 | ||
2569 | PERL_CALLCONV OP* Perl_ck_method(pTHX_ OP *o) | |
2570 | __attribute__warn_unused_result__ | |
2571 | __attribute__nonnull__(pTHX_1); | |
2572 | ||
2573 | PERL_CALLCONV OP* Perl_ck_null(pTHX_ OP *o) | |
2574 | __attribute__warn_unused_result__ | |
2575 | __attribute__nonnull__(pTHX_1); | |
2576 | ||
2577 | PERL_CALLCONV OP* Perl_ck_open(pTHX_ OP *o) | |
2578 | __attribute__warn_unused_result__ | |
2579 | __attribute__nonnull__(pTHX_1); | |
2580 | ||
2581 | PERL_CALLCONV OP* Perl_ck_repeat(pTHX_ OP *o) | |
2582 | __attribute__warn_unused_result__ | |
2583 | __attribute__nonnull__(pTHX_1); | |
2584 | ||
2585 | PERL_CALLCONV OP* Perl_ck_require(pTHX_ OP *o) | |
2586 | __attribute__warn_unused_result__ | |
2587 | __attribute__nonnull__(pTHX_1); | |
2588 | ||
2589 | PERL_CALLCONV OP* Perl_ck_retarget(pTHX_ OP *o) | |
2590 | __attribute__warn_unused_result__ | |
2591 | __attribute__nonnull__(pTHX_1); | |
2592 | ||
2593 | PERL_CALLCONV OP* Perl_ck_return(pTHX_ OP *o) | |
2594 | __attribute__warn_unused_result__ | |
2595 | __attribute__nonnull__(pTHX_1); | |
2596 | ||
2597 | PERL_CALLCONV OP* Perl_ck_rfun(pTHX_ OP *o) | |
2598 | __attribute__warn_unused_result__ | |
2599 | __attribute__nonnull__(pTHX_1); | |
2600 | ||
2601 | PERL_CALLCONV OP* Perl_ck_rvconst(pTHX_ OP *o) | |
2602 | __attribute__warn_unused_result__ | |
2603 | __attribute__nonnull__(pTHX_1); | |
2604 | ||
2605 | PERL_CALLCONV OP* Perl_ck_sassign(pTHX_ OP *o) | |
2606 | __attribute__warn_unused_result__ | |
2607 | __attribute__nonnull__(pTHX_1); | |
2608 | ||
2609 | PERL_CALLCONV OP* Perl_ck_select(pTHX_ OP *o) | |
2610 | __attribute__warn_unused_result__ | |
2611 | __attribute__nonnull__(pTHX_1); | |
2612 | ||
2613 | PERL_CALLCONV OP* Perl_ck_shift(pTHX_ OP *o) | |
2614 | __attribute__warn_unused_result__ | |
2615 | __attribute__nonnull__(pTHX_1); | |
2616 | ||
2617 | PERL_CALLCONV OP* Perl_ck_sort(pTHX_ OP *o) | |
2618 | __attribute__warn_unused_result__ | |
2619 | __attribute__nonnull__(pTHX_1); | |
2620 | ||
2621 | PERL_CALLCONV OP* Perl_ck_spair(pTHX_ OP *o) | |
2622 | __attribute__warn_unused_result__ | |
2623 | __attribute__nonnull__(pTHX_1); | |
2624 | ||
2625 | PERL_CALLCONV OP* Perl_ck_split(pTHX_ OP *o) | |
2626 | __attribute__warn_unused_result__ | |
2627 | __attribute__nonnull__(pTHX_1); | |
2628 | ||
2629 | PERL_CALLCONV OP* Perl_ck_subr(pTHX_ OP *o) | |
2630 | __attribute__warn_unused_result__ | |
2631 | __attribute__nonnull__(pTHX_1); | |
2632 | ||
2633 | PERL_CALLCONV OP* Perl_ck_substr(pTHX_ OP *o) | |
2634 | __attribute__warn_unused_result__ | |
2635 | __attribute__nonnull__(pTHX_1); | |
2636 | ||
2637 | PERL_CALLCONV OP* Perl_ck_svconst(pTHX_ OP *o) | |
2638 | __attribute__warn_unused_result__ | |
2639 | __attribute__nonnull__(pTHX_1); | |
2640 | ||
2641 | PERL_CALLCONV OP* Perl_ck_trunc(pTHX_ OP *o) | |
2642 | __attribute__warn_unused_result__ | |
2643 | __attribute__nonnull__(pTHX_1); | |
2644 | ||
2645 | PERL_CALLCONV OP* Perl_ck_unpack(pTHX_ OP *o) | |
2646 | __attribute__warn_unused_result__ | |
2647 | __attribute__nonnull__(pTHX_1); | |
2648 | ||
2649 | STATIC bool S_is_handle_constructor(pTHX_ const OP *o, I32 numargs) | |
2650 | __attribute__warn_unused_result__ | |
2651 | __attribute__nonnull__(pTHX_1); | |
2652 | ||
2653 | STATIC I32 S_is_list_assignment(pTHX_ const OP *o) | |
2654 | __attribute__warn_unused_result__; | |
2655 | ||
2656 | STATIC void S_cop_free(pTHX_ COP *cop) | |
2657 | __attribute__nonnull__(pTHX_1); | |
2658 | ||
cea2e8a9 | 2659 | STATIC OP* S_modkids(pTHX_ OP *o, I32 type); |
504618e9 AL |
2660 | STATIC OP* S_scalarboolean(pTHX_ OP *o) |
2661 | __attribute__nonnull__(pTHX_1); | |
2662 | ||
2663 | STATIC OP* S_newDEFSVOP(pTHX) | |
2664 | __attribute__warn_unused_result__; | |
2665 | ||
2666 | STATIC OP* S_new_logop(pTHX_ I32 type, I32 flags, OP **firstp, OP **otherp) | |
2667 | __attribute__warn_unused_result__ | |
2668 | __attribute__nonnull__(pTHX_3) | |
2669 | __attribute__nonnull__(pTHX_4); | |
2670 | ||
2671 | STATIC void S_simplify_sort(pTHX_ OP *o) | |
2672 | __attribute__nonnull__(pTHX_1); | |
2673 | ||
aec46f14 AL |
2674 | STATIC const char* S_gv_ename(pTHX_ GV *gv) |
2675 | __attribute__nonnull__(pTHX_1); | |
2676 | ||
2677 | STATIC bool S_scalar_mod_type(pTHX_ const OP *o, I32 type) | |
2678 | __attribute__nonnull__(pTHX_1); | |
2679 | ||
2680 | STATIC OP * S_my_kid(pTHX_ OP *o, OP *attrs, OP **imopsp) | |
2681 | __attribute__nonnull__(pTHX_3); | |
2682 | ||
2683 | STATIC OP * S_dup_attrlist(pTHX_ OP *o) | |
2684 | __attribute__nonnull__(pTHX_1); | |
2685 | ||
2686 | STATIC void S_apply_attrs(pTHX_ HV *stash, SV *target, OP *attrs, bool for_my) | |
2687 | __attribute__nonnull__(pTHX_1) | |
2688 | __attribute__nonnull__(pTHX_2); | |
2689 | ||
2690 | STATIC void S_apply_attrs_my(pTHX_ HV *stash, OP *target, OP *attrs, OP **imopsp) | |
2691 | __attribute__nonnull__(pTHX_1) | |
2692 | __attribute__nonnull__(pTHX_2) | |
2693 | __attribute__nonnull__(pTHX_4); | |
2694 | ||
504618e9 AL |
2695 | STATIC void S_bad_type(pTHX_ I32 n, const char *t, const char *name, const OP *kid) |
2696 | __attribute__nonnull__(pTHX_2) | |
2697 | __attribute__nonnull__(pTHX_3) | |
2698 | __attribute__nonnull__(pTHX_4); | |
2699 | ||
2700 | STATIC void S_no_bareword_allowed(pTHX_ const OP *o) | |
2701 | __attribute__nonnull__(pTHX_1); | |
2702 | ||
2703 | STATIC OP* S_no_fh_allowed(pTHX_ OP *o) | |
2704 | __attribute__warn_unused_result__ | |
2705 | __attribute__nonnull__(pTHX_1); | |
2706 | ||
2707 | STATIC OP* S_too_few_arguments(pTHX_ OP *o, const char* name) | |
2708 | __attribute__warn_unused_result__ | |
2709 | __attribute__nonnull__(pTHX_1) | |
2710 | __attribute__nonnull__(pTHX_2); | |
2711 | ||
2712 | STATIC OP* S_too_many_arguments(pTHX_ OP *o, const char* name) | |
2713 | __attribute__warn_unused_result__ | |
2714 | __attribute__nonnull__(pTHX_1) | |
2715 | __attribute__nonnull__(pTHX_2); | |
2716 | ||
c7e45529 AE |
2717 | #endif |
2718 | #if defined(PL_OP_SLAB_ALLOC) | |
504618e9 | 2719 | PERL_CALLCONV void* Perl_Slab_Alloc(pTHX_ int m, size_t sz) |
aec46f14 | 2720 | __attribute__malloc__ |
504618e9 AL |
2721 | __attribute__warn_unused_result__; |
2722 | ||
aec46f14 AL |
2723 | PERL_CALLCONV void Perl_Slab_Free(pTHX_ void *op) |
2724 | __attribute__nonnull__(pTHX_1); | |
2725 | ||
864dbfa3 | 2726 | #endif |
1d7c1841 | 2727 | |
0cb96387 | 2728 | #if defined(PERL_IN_PERL_C) || defined(PERL_DECL_PROT) |
cea2e8a9 | 2729 | STATIC void S_find_beginning(pTHX); |
aec46f14 AL |
2730 | STATIC void S_forbid_setid(pTHX_ const char * s) |
2731 | __attribute__nonnull__(pTHX_1); | |
2732 | ||
dd374669 | 2733 | STATIC void S_incpush(pTHX_ const char *dir, bool addsubdirs, bool addoldvers, bool usesep, bool canrelocate); |
cea2e8a9 GS |
2734 | STATIC void S_init_interp(pTHX); |
2735 | STATIC void S_init_ids(pTHX); | |
cea2e8a9 GS |
2736 | STATIC void S_init_lexer(pTHX); |
2737 | STATIC void S_init_main_stash(pTHX); | |
2738 | STATIC void S_init_perllib(pTHX); | |
aec46f14 AL |
2739 | STATIC void S_init_postdump_symbols(pTHX_ int argc, char **argv, char **env) |
2740 | __attribute__nonnull__(pTHX_2); | |
2741 | ||
cea2e8a9 | 2742 | STATIC void S_init_predump_symbols(pTHX); |
f54cb97a | 2743 | STATIC void S_my_exit_jump(pTHX) |
abb2c242 | 2744 | __attribute__noreturn__; |
f54cb97a | 2745 | |
cea2e8a9 | 2746 | STATIC void S_nuke_stacks(pTHX); |
aec46f14 AL |
2747 | STATIC void S_open_script(pTHX_ const char *scriptname, bool dosearch, SV *sv) |
2748 | __attribute__nonnull__(pTHX_1) | |
2749 | __attribute__nonnull__(pTHX_3); | |
2750 | ||
2751 | STATIC void S_usage(pTHX_ const char *name) | |
2752 | __attribute__nonnull__(pTHX_1); | |
2753 | ||
2754 | STATIC void S_validate_suid(pTHX_ const char *validarg, const char *scriptname) | |
2755 | __attribute__nonnull__(pTHX_1) | |
2756 | __attribute__nonnull__(pTHX_2); | |
2757 | ||
cea2e8a9 GS |
2758 | # if defined(IAMSUID) |
2759 | STATIC int S_fd_on_nosuid_fs(pTHX_ int fd); | |
2760 | # endif | |
14dd3ad8 | 2761 | STATIC void* S_parse_body(pTHX_ char **env, XSINIT_t xsinit); |
f54cb97a | 2762 | STATIC void S_run_body(pTHX_ I32 oldscope) |
abb2c242 | 2763 | __attribute__noreturn__; |
f54cb97a | 2764 | |
aec46f14 AL |
2765 | STATIC void S_call_body(pTHX_ const OP *myop, bool is_eval) |
2766 | __attribute__nonnull__(pTHX_1); | |
2767 | ||
2768 | STATIC void* S_call_list_body(pTHX_ CV *cv) | |
2769 | __attribute__nonnull__(pTHX_1); | |
2770 | ||
864dbfa3 | 2771 | #endif |
1d7c1841 | 2772 | |
0cb96387 | 2773 | #if defined(PERL_IN_PP_C) || defined(PERL_DECL_PROT) |
901017d6 | 2774 | STATIC SV* S_refto(pTHX_ SV* sv) |
aec46f14 AL |
2775 | __attribute__warn_unused_result__ |
2776 | __attribute__nonnull__(pTHX_1); | |
901017d6 | 2777 | |
a6ec74c1 JH |
2778 | #endif |
2779 | ||
2780 | #if defined(PERL_IN_PP_PACK_C) || defined(PERL_DECL_PROT) | |
aec46f14 AL |
2781 | STATIC I32 S_unpack_rec(pTHX_ struct tempsym* symptr, const char *s, const char *strbeg, const char *strend, const char **new_s) |
2782 | __attribute__nonnull__(pTHX_1) | |
2783 | __attribute__nonnull__(pTHX_2) | |
2784 | __attribute__nonnull__(pTHX_3) | |
2785 | __attribute__nonnull__(pTHX_4); | |
2786 | ||
2787 | STATIC SV ** S_pack_rec(pTHX_ SV *cat, struct tempsym* symptr, SV **beglist, SV **endlist) | |
2788 | __attribute__nonnull__(pTHX_1) | |
2789 | __attribute__nonnull__(pTHX_2) | |
2790 | __attribute__nonnull__(pTHX_3) | |
2791 | __attribute__nonnull__(pTHX_4); | |
2792 | ||
4373e329 | 2793 | STATIC SV* S_mul128(pTHX_ SV *sv, U8 m) |
abb2c242 | 2794 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2795 | |
4373e329 | 2796 | STATIC I32 S_measure_struct(pTHX_ struct tempsym* symptr) |
abb2c242 | 2797 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2798 | |
4373e329 | 2799 | STATIC bool S_next_symbol(pTHX_ struct tempsym* symptr) |
abb2c242 | 2800 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2801 | |
4373e329 | 2802 | STATIC SV* S_is_an_int(pTHX_ const char *s, STRLEN l) |
1df70142 | 2803 | __attribute__warn_unused_result__ |
abb2c242 | 2804 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2805 | |
4373e329 | 2806 | STATIC int S_div128(pTHX_ SV *pnum, bool *done) |
abb2c242 JH |
2807 | __attribute__nonnull__(pTHX_1) |
2808 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 2809 | |
4373e329 | 2810 | STATIC const char * S_group_end(pTHX_ const char *pat, const char *patend, char ender) |
abb2c242 JH |
2811 | __attribute__nonnull__(pTHX_1) |
2812 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 2813 | |
4373e329 | 2814 | STATIC const char * S_get_num(pTHX_ const char *ppat, I32 *lenptr) |
255164ba | 2815 | __attribute__warn_unused_result__ |
abb2c242 JH |
2816 | __attribute__nonnull__(pTHX_1) |
2817 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 2818 | |
aec46f14 AL |
2819 | STATIC bool S_need_utf8(const char *pat, const char *patend) |
2820 | __attribute__nonnull__(1) | |
2821 | __attribute__nonnull__(2); | |
2822 | ||
2823 | STATIC char S_first_symbol(const char *pat, const char *patend) | |
2824 | __attribute__nonnull__(1) | |
2825 | __attribute__nonnull__(2); | |
2826 | ||
864dbfa3 | 2827 | #endif |
1d7c1841 | 2828 | |
0cb96387 | 2829 | #if defined(PERL_IN_PP_CTL_C) || defined(PERL_DECL_PROT) |
901017d6 AL |
2830 | STATIC OP* S_docatch(pTHX_ OP *o) |
2831 | __attribute__warn_unused_result__; | |
2832 | ||
2833 | STATIC void S_docatch_body(pTHX); | |
2834 | STATIC OP* S_dofindlabel(pTHX_ OP *o, const char *label, OP **opstack, OP **oplimit) | |
aec46f14 AL |
2835 | __attribute__warn_unused_result__ |
2836 | __attribute__nonnull__(pTHX_1) | |
2837 | __attribute__nonnull__(pTHX_2) | |
2838 | __attribute__nonnull__(pTHX_3) | |
2839 | __attribute__nonnull__(pTHX_4); | |
901017d6 AL |
2840 | |
2841 | STATIC OP* S_doparseform(pTHX_ SV *sv) | |
aec46f14 AL |
2842 | __attribute__warn_unused_result__ |
2843 | __attribute__nonnull__(pTHX_1); | |
901017d6 AL |
2844 | |
2845 | STATIC bool S_num_overflow(NV value, I32 fldsize, I32 frcsize) | |
2846 | __attribute__warn_unused_result__; | |
2847 | ||
2848 | STATIC I32 S_dopoptoeval(pTHX_ I32 startingblock) | |
2849 | __attribute__warn_unused_result__; | |
2850 | ||
4373e329 | 2851 | STATIC I32 S_dopoptolabel(pTHX_ const char *label) |
901017d6 | 2852 | __attribute__warn_unused_result__ |
abb2c242 | 2853 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2854 | |
901017d6 AL |
2855 | STATIC I32 S_dopoptoloop(pTHX_ I32 startingblock) |
2856 | __attribute__warn_unused_result__; | |
2857 | ||
2858 | STATIC I32 S_dopoptosub(pTHX_ I32 startingblock) | |
2859 | __attribute__warn_unused_result__; | |
2860 | ||
2861 | STATIC I32 S_dopoptosub_at(pTHX_ const PERL_CONTEXT* cxstk, I32 startingblock) | |
aec46f14 AL |
2862 | __attribute__warn_unused_result__ |
2863 | __attribute__nonnull__(pTHX_1); | |
901017d6 | 2864 | |
46c461b5 AL |
2865 | STATIC void S_save_lines(pTHX_ AV *array, SV *sv) |
2866 | __attribute__nonnull__(pTHX_2); | |
2867 | ||
901017d6 AL |
2868 | STATIC OP* S_doeval(pTHX_ int gimme, OP** startop, CV* outside, U32 seq) |
2869 | __attribute__warn_unused_result__; | |
2870 | ||
2871 | STATIC PerlIO * S_doopen_pm(pTHX_ const char *name, const char *mode) | |
aec46f14 AL |
2872 | __attribute__warn_unused_result__ |
2873 | __attribute__nonnull__(pTHX_1) | |
2874 | __attribute__nonnull__(pTHX_2); | |
901017d6 | 2875 | |
4373e329 | 2876 | STATIC bool S_path_is_absolute(pTHX_ const char *name) |
901017d6 | 2877 | __attribute__warn_unused_result__ |
abb2c242 | 2878 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 2879 | |
864dbfa3 | 2880 | #endif |
1d7c1841 | 2881 | |
0cb96387 | 2882 | #if defined(PERL_IN_PP_HOT_C) || defined(PERL_DECL_PROT) |
a28509cc AL |
2883 | STATIC void S_do_oddball(pTHX_ HV *hash, SV **relem, SV **firstrelem) |
2884 | __attribute__nonnull__(pTHX_1) | |
2885 | __attribute__nonnull__(pTHX_2) | |
2886 | __attribute__nonnull__(pTHX_3); | |
2887 | ||
2888 | STATIC CV* S_get_db_sub(pTHX_ SV **svp, CV *cv) | |
2889 | __attribute__warn_unused_result__ | |
2890 | __attribute__nonnull__(pTHX_1) | |
2891 | __attribute__nonnull__(pTHX_2); | |
2892 | ||
2893 | STATIC SV* S_method_common(pTHX_ SV* meth, U32* hashp) | |
2894 | __attribute__warn_unused_result__ | |
2895 | __attribute__nonnull__(pTHX_1); | |
2896 | ||
864dbfa3 | 2897 | #endif |
1d7c1841 | 2898 | |
0cb96387 | 2899 | #if defined(PERL_IN_PP_SYS_C) || defined(PERL_DECL_PROT) |
b464bac0 AL |
2900 | STATIC OP* S_doform(pTHX_ CV *cv, GV *gv, OP *retop) |
2901 | __attribute__nonnull__(pTHX_1) | |
2902 | __attribute__nonnull__(pTHX_2) | |
2903 | __attribute__nonnull__(pTHX_3); | |
2904 | ||
2905 | STATIC int S_emulate_eaccess(pTHX_ const char* path, Mode_t mode) | |
b464bac0 AL |
2906 | __attribute__nonnull__(pTHX_1); |
2907 | ||
cea2e8a9 | 2908 | # if !defined(HAS_MKDIR) || !defined(HAS_RMDIR) |
b464bac0 AL |
2909 | STATIC int S_dooneliner(pTHX_ const char *cmd, const char *filename) |
2910 | __attribute__warn_unused_result__ | |
2911 | __attribute__nonnull__(pTHX_1) | |
2912 | __attribute__nonnull__(pTHX_2); | |
2913 | ||
cea2e8a9 | 2914 | # endif |
864dbfa3 | 2915 | #endif |
1d7c1841 | 2916 | |
0cb96387 | 2917 | #if defined(PERL_IN_REGCOMP_C) || defined(PERL_DECL_PROT) |
a28509cc AL |
2918 | STATIC regnode* S_reg(pTHX_ struct RExC_state_t *state, I32 paren, I32 *flagp) |
2919 | __attribute__nonnull__(pTHX_1) | |
2920 | __attribute__nonnull__(pTHX_3); | |
2921 | ||
2922 | STATIC regnode* S_reganode(pTHX_ struct RExC_state_t *state, U8 op, U32 arg) | |
2923 | __attribute__nonnull__(pTHX_1); | |
2924 | ||
2925 | STATIC regnode* S_regatom(pTHX_ struct RExC_state_t *state, I32 *flagp) | |
2926 | __attribute__nonnull__(pTHX_1) | |
2927 | __attribute__nonnull__(pTHX_2); | |
2928 | ||
2929 | STATIC regnode* S_regbranch(pTHX_ struct RExC_state_t *state, I32 *flagp, I32 first) | |
2930 | __attribute__nonnull__(pTHX_1) | |
2931 | __attribute__nonnull__(pTHX_2); | |
2932 | ||
2933 | STATIC void S_reguni(pTHX_ const struct RExC_state_t *state, UV uv, char *s, STRLEN *lenp) | |
2934 | __attribute__nonnull__(pTHX_1) | |
2935 | __attribute__nonnull__(pTHX_3) | |
2936 | __attribute__nonnull__(pTHX_4); | |
2937 | ||
2938 | STATIC regnode* S_regclass(pTHX_ struct RExC_state_t *state) | |
2939 | __attribute__nonnull__(pTHX_1); | |
2940 | ||
a3b680e6 | 2941 | STATIC I32 S_regcurly(pTHX_ const char *) |
abb2c242 JH |
2942 | __attribute__warn_unused_result__ |
2943 | __attribute__nonnull__(pTHX_1); | |
a3b680e6 | 2944 | |
a28509cc AL |
2945 | STATIC regnode* S_reg_node(pTHX_ struct RExC_state_t *state, U8 op) |
2946 | __attribute__nonnull__(pTHX_1); | |
2947 | ||
2948 | STATIC regnode* S_regpiece(pTHX_ struct RExC_state_t *state, I32 *flagp) | |
2949 | __attribute__nonnull__(pTHX_1) | |
2950 | __attribute__nonnull__(pTHX_2); | |
2951 | ||
2952 | STATIC void S_reginsert(pTHX_ struct RExC_state_t *state, U8 op, regnode *opnd) | |
2953 | __attribute__nonnull__(pTHX_1) | |
2954 | __attribute__nonnull__(pTHX_3); | |
2955 | ||
2956 | STATIC void S_regoptail(pTHX_ struct RExC_state_t *state, regnode *p, regnode *val) | |
2957 | __attribute__nonnull__(pTHX_1) | |
2958 | __attribute__nonnull__(pTHX_2) | |
2959 | __attribute__nonnull__(pTHX_3); | |
2960 | ||
2961 | STATIC void S_regtail(pTHX_ struct RExC_state_t *state, regnode *p, regnode *val) | |
2962 | __attribute__nonnull__(pTHX_1) | |
2963 | __attribute__nonnull__(pTHX_2) | |
2964 | __attribute__nonnull__(pTHX_3); | |
2965 | ||
2966 | STATIC char* S_regwhite(pTHX_ char *p, const char *e) | |
2967 | __attribute__nonnull__(pTHX_1) | |
2968 | __attribute__nonnull__(pTHX_2); | |
2969 | ||
2970 | STATIC char* S_nextchar(pTHX_ struct RExC_state_t*) | |
2971 | __attribute__nonnull__(pTHX_1); | |
2972 | ||
8fa7f367 | 2973 | # ifdef DEBUGGING |
aec46f14 AL |
2974 | STATIC regnode* S_dumpuntil(pTHX_ regnode *start, regnode *node, regnode *last, SV* sv, I32 l) |
2975 | __attribute__nonnull__(pTHX_1) | |
2976 | __attribute__nonnull__(pTHX_2) | |
2977 | __attribute__nonnull__(pTHX_4); | |
2978 | ||
504618e9 AL |
2979 | STATIC void S_put_byte(pTHX_ SV* sv, int c) |
2980 | __attribute__nonnull__(pTHX_1); | |
2981 | ||
8fa7f367 | 2982 | # endif |
aec46f14 AL |
2983 | STATIC void S_scan_commit(pTHX_ struct RExC_state_t*, struct scan_data_t *data) |
2984 | __attribute__nonnull__(pTHX_1) | |
2985 | __attribute__nonnull__(pTHX_2); | |
2986 | ||
a28509cc AL |
2987 | STATIC void S_cl_anything(pTHX_ struct RExC_state_t*, struct regnode_charclass_class *cl) |
2988 | __attribute__nonnull__(pTHX_1) | |
2989 | __attribute__nonnull__(pTHX_2); | |
2990 | ||
2991 | STATIC int S_cl_is_anything(pTHX_ const struct regnode_charclass_class *cl) | |
2992 | __attribute__nonnull__(pTHX_1); | |
2993 | ||
2994 | STATIC void S_cl_init(pTHX_ struct RExC_state_t*, struct regnode_charclass_class *cl) | |
2995 | __attribute__nonnull__(pTHX_1) | |
2996 | __attribute__nonnull__(pTHX_2); | |
2997 | ||
2998 | STATIC void S_cl_init_zero(pTHX_ struct RExC_state_t*, struct regnode_charclass_class *cl) | |
2999 | __attribute__nonnull__(pTHX_1) | |
3000 | __attribute__nonnull__(pTHX_2); | |
3001 | ||
3002 | STATIC void S_cl_and(pTHX_ struct regnode_charclass_class *cl, const struct regnode_charclass_class *and_with) | |
46c461b5 AL |
3003 | __attribute__nonnull__(pTHX_1) |
3004 | __attribute__nonnull__(pTHX_2); | |
a28509cc AL |
3005 | |
3006 | STATIC void S_cl_or(pTHX_ struct RExC_state_t*, struct regnode_charclass_class *cl, const struct regnode_charclass_class *or_with) | |
3007 | __attribute__nonnull__(pTHX_1) | |
3008 | __attribute__nonnull__(pTHX_2) | |
3009 | __attribute__nonnull__(pTHX_3); | |
3010 | ||
aec46f14 AL |
3011 | STATIC I32 S_study_chunk(pTHX_ struct RExC_state_t* pRExC_state, regnode **scanp, I32 *deltap, regnode *last, struct scan_data_t *data, U32 flags, U32 depth) |
3012 | __attribute__nonnull__(pTHX_1) | |
3013 | __attribute__nonnull__(pTHX_2) | |
3014 | __attribute__nonnull__(pTHX_3) | |
3015 | __attribute__nonnull__(pTHX_4) | |
3016 | __attribute__nonnull__(pTHX_5); | |
3017 | ||
3018 | STATIC I32 S_add_data(pTHX_ struct RExC_state_t*, I32 n, const char *s) | |
3019 | __attribute__nonnull__(pTHX_1) | |
3020 | __attribute__nonnull__(pTHX_3); | |
3021 | ||
f54cb97a | 3022 | STATIC void S_re_croak2(pTHX_ const char* pat1, const char* pat2, ...) |
46c461b5 AL |
3023 | __attribute__noreturn__ |
3024 | __attribute__nonnull__(pTHX_1) | |
3025 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 3026 | |
aec46f14 AL |
3027 | STATIC I32 S_regpposixcc(pTHX_ struct RExC_state_t*, I32 value) |
3028 | __attribute__nonnull__(pTHX_1); | |
3029 | ||
3030 | STATIC void S_checkposixcc(pTHX_ struct RExC_state_t*) | |
3031 | __attribute__nonnull__(pTHX_1); | |
3032 | ||
3033 | ||
3034 | STATIC I32 S_make_trie(pTHX_ struct RExC_state_t*, regnode *startbranch, regnode *first, regnode *last, regnode *tail, U32 flags) | |
3035 | __attribute__nonnull__(pTHX_1) | |
3036 | __attribute__nonnull__(pTHX_2) | |
3037 | __attribute__nonnull__(pTHX_3) | |
3038 | __attribute__nonnull__(pTHX_4) | |
3039 | __attribute__nonnull__(pTHX_5); | |
a3621e74 | 3040 | |
864dbfa3 | 3041 | #endif |
1d7c1841 | 3042 | |
0cb96387 | 3043 | #if defined(PERL_IN_REGEXEC_C) || defined(PERL_DECL_PROT) |
a3b680e6 | 3044 | STATIC I32 S_regmatch(pTHX_ regnode *prog) |
abb2c242 JH |
3045 | __attribute__warn_unused_result__ |
3046 | __attribute__nonnull__(pTHX_1); | |
a3b680e6 AL |
3047 | |
3048 | STATIC I32 S_regrepeat(pTHX_ const regnode *p, I32 max) | |
abb2c242 JH |
3049 | __attribute__warn_unused_result__ |
3050 | __attribute__nonnull__(pTHX_1); | |
a3b680e6 AL |
3051 | |
3052 | STATIC I32 S_regrepeat_hard(pTHX_ regnode *p, I32 max, I32 *lp) | |
abb2c242 JH |
3053 | __attribute__warn_unused_result__ |
3054 | __attribute__nonnull__(pTHX_1) | |
3055 | __attribute__nonnull__(pTHX_3); | |
a3b680e6 AL |
3056 | |
3057 | STATIC I32 S_regtry(pTHX_ regexp *prog, char *startpos) | |
46c461b5 AL |
3058 | __attribute__warn_unused_result__ |
3059 | __attribute__nonnull__(pTHX_1) | |
3060 | __attribute__nonnull__(pTHX_2); | |
a3b680e6 AL |
3061 | |
3062 | STATIC bool S_reginclass(pTHX_ const regnode *n, const U8 *p, STRLEN *lenp, bool do_utf8sv_is_utf8) | |
abb2c242 JH |
3063 | __attribute__warn_unused_result__ |
3064 | __attribute__nonnull__(pTHX_1) | |
3065 | __attribute__nonnull__(pTHX_2); | |
a3b680e6 | 3066 | |
cea2e8a9 GS |
3067 | STATIC CHECKPOINT S_regcppush(pTHX_ I32 parenfloor); |
3068 | STATIC char* S_regcppop(pTHX); | |
3069 | STATIC char* S_regcp_set_to(pTHX_ I32 ss); | |
46c461b5 AL |
3070 | STATIC void S_cache_re(pTHX_ regexp *prog) |
3071 | __attribute__nonnull__(pTHX_1); | |
3072 | ||
a3b680e6 | 3073 | STATIC U8* S_reghop(pTHX_ U8 *pos, I32 off) |
aec46f14 AL |
3074 | __attribute__warn_unused_result__ |
3075 | __attribute__nonnull__(pTHX_1); | |
a3b680e6 AL |
3076 | |
3077 | STATIC U8* S_reghop3(pTHX_ U8 *pos, I32 off, U8 *lim) | |
aec46f14 AL |
3078 | __attribute__warn_unused_result__ |
3079 | __attribute__nonnull__(pTHX_1) | |
3080 | __attribute__nonnull__(pTHX_3); | |
a3b680e6 AL |
3081 | |
3082 | STATIC U8* S_reghopmaybe(pTHX_ U8 *pos, I32 off) | |
aec46f14 AL |
3083 | __attribute__warn_unused_result__ |
3084 | __attribute__nonnull__(pTHX_1); | |
a3b680e6 AL |
3085 | |
3086 | STATIC U8* S_reghopmaybe3(pTHX_ U8 *pos, I32 off, U8 *lim) | |
abb2c242 JH |
3087 | __attribute__warn_unused_result__ |
3088 | __attribute__nonnull__(pTHX_1) | |
3089 | __attribute__nonnull__(pTHX_3); | |
a3b680e6 AL |
3090 | |
3091 | STATIC char* S_find_byclass(pTHX_ regexp * prog, regnode *c, char *s, const char *strend, I32 norun) | |
abb2c242 JH |
3092 | __attribute__warn_unused_result__ |
3093 | __attribute__nonnull__(pTHX_1) | |
3094 | __attribute__nonnull__(pTHX_2) | |
3095 | __attribute__nonnull__(pTHX_3) | |
3096 | __attribute__nonnull__(pTHX_4); | |
a3b680e6 AL |
3097 | |
3098 | STATIC void S_to_utf8_substr(pTHX_ regexp * prog) | |
abb2c242 | 3099 | __attribute__nonnull__(pTHX_1); |
a3b680e6 AL |
3100 | |
3101 | STATIC void S_to_byte_substr(pTHX_ regexp * prog) | |
abb2c242 | 3102 | __attribute__nonnull__(pTHX_1); |
a3b680e6 | 3103 | |
864dbfa3 | 3104 | #endif |
1d7c1841 | 3105 | |
bd16a5f0 | 3106 | #if defined(PERL_IN_DUMP_C) || defined(PERL_DECL_PROT) |
53a2efa2 | 3107 | STATIC CV* S_deb_curcv(pTHX_ I32 ix); |
46c461b5 AL |
3108 | STATIC void S_debprof(pTHX_ const OP *o) |
3109 | __attribute__nonnull__(pTHX_1); | |
3110 | ||
864dbfa3 | 3111 | #endif |
1d7c1841 | 3112 | |
0cb96387 | 3113 | #if defined(PERL_IN_SCOPE_C) || defined(PERL_DECL_PROT) |
46c461b5 AL |
3114 | STATIC SV* S_save_scalar_at(pTHX_ SV **sptr) |
3115 | __attribute__nonnull__(pTHX_1); | |
3116 | ||
864dbfa3 | 3117 | #endif |
1d7c1841 | 3118 | |
e15faf7d NC |
3119 | #if defined(PERL_IN_GV_C) || defined(PERL_IN_SV_C) || defined(PERL_IN_PAD_C) || defined(PERL_DECL_PROT) |
3120 | PERL_CALLCONV void Perl_sv_add_backref(pTHX_ SV *tsv, SV *sv) | |
3121 | __attribute__nonnull__(pTHX_1) | |
3122 | __attribute__nonnull__(pTHX_2); | |
3123 | ||
3124 | #endif | |
3125 | ||
0cb96387 | 3126 | #if defined(PERL_IN_SV_C) || defined(PERL_DECL_PROT) |
aec46f14 AL |
3127 | STATIC char * S_uiv_2buf(char *buf, IV iv, UV uv, int is_uv, char **peob) |
3128 | __attribute__warn_unused_result__ | |
3129 | __attribute__nonnull__(1) | |
3130 | __attribute__nonnull__(5); | |
3131 | ||
1b6737cc AL |
3132 | STATIC IV S_asIV(pTHX_ SV* sv) |
3133 | __attribute__warn_unused_result__ | |
3134 | __attribute__nonnull__(pTHX_1); | |
3135 | ||
3136 | STATIC UV S_asUV(pTHX_ SV* sv) | |
3137 | __attribute__warn_unused_result__ | |
3138 | __attribute__nonnull__(pTHX_1); | |
3139 | ||
3140 | STATIC void S_sv_unglob(pTHX_ SV* sv) | |
3141 | __attribute__nonnull__(pTHX_1); | |
3142 | ||
3143 | STATIC void S_not_a_number(pTHX_ SV *sv) | |
3144 | __attribute__nonnull__(pTHX_1); | |
3145 | ||
3146 | STATIC I32 S_visit(pTHX_ SVFUNC_t f, U32 flags, U32 mask) | |
3147 | __attribute__nonnull__(pTHX_1); | |
3148 | ||
e15faf7d | 3149 | STATIC void S_sv_del_backref(pTHX_ SV *target, SV *ref) |
1b6737cc AL |
3150 | __attribute__nonnull__(pTHX_1) |
3151 | __attribute__nonnull__(pTHX_2); | |
3152 | ||
be2ef075 NC |
3153 | STATIC SV * S_varname(pTHX_ GV *gv, const char gvtype, PADOFFSET targ, SV *keyname, I32 aindex, int subscript_type) |
3154 | __attribute__warn_unused_result__; | |
a3b680e6 | 3155 | |
8fa7f367 | 3156 | # ifdef DEBUGGING |
46c461b5 AL |
3157 | STATIC void S_del_sv(pTHX_ SV *p) |
3158 | __attribute__nonnull__(pTHX_1); | |
3159 | ||
cea2e8a9 | 3160 | # endif |
28e5dec8 | 3161 | # if !defined(NV_PRESERVES_UV) |
46c461b5 AL |
3162 | STATIC int S_sv_2iuv_non_preserve(pTHX_ SV *sv, I32 numtype) |
3163 | __attribute__nonnull__(pTHX_1); | |
3164 | ||
28e5dec8 | 3165 | # endif |
a3b680e6 | 3166 | STATIC I32 S_expect_number(pTHX_ char** pattern) |
abb2c242 JH |
3167 | __attribute__warn_unused_result__ |
3168 | __attribute__nonnull__(pTHX_1); | |
a3b680e6 | 3169 | |
9cbac4c7 | 3170 | # |
245d4a47 | 3171 | STATIC bool S_utf8_mg_pos(pTHX_ SV *sv, MAGIC **mgp, STRLEN **cachep, I32 i, I32 *offsetp, I32 uoff, const U8 **sp, const U8 *start, const U8 *send) |
abb2c242 JH |
3172 | __attribute__nonnull__(pTHX_1) |
3173 | __attribute__nonnull__(pTHX_2) | |
3174 | __attribute__nonnull__(pTHX_3) | |
3175 | __attribute__nonnull__(pTHX_5) | |
3176 | __attribute__nonnull__(pTHX_7) | |
3177 | __attribute__nonnull__(pTHX_8) | |
3178 | __attribute__nonnull__(pTHX_9); | |
a3b680e6 | 3179 | |
245d4a47 | 3180 | STATIC bool S_utf8_mg_pos_init(pTHX_ SV *sv, MAGIC **mgp, STRLEN **cachep, I32 i, I32 offsetp, const U8 *s, const U8 *start) |
abb2c242 JH |
3181 | __attribute__nonnull__(pTHX_1) |
3182 | __attribute__nonnull__(pTHX_2) | |
3183 | __attribute__nonnull__(pTHX_3) | |
3184 | __attribute__nonnull__(pTHX_6) | |
3185 | __attribute__nonnull__(pTHX_7); | |
a3b680e6 | 3186 | |
f8c7b90f | 3187 | #if defined(PERL_OLD_COPY_ON_WRITE) |
aec46f14 AL |
3188 | STATIC void S_sv_release_COW(pTHX_ SV *sv, const char *pvx, STRLEN len, SV *after) |
3189 | __attribute__nonnull__(pTHX_1) | |
3190 | __attribute__nonnull__(pTHX_2) | |
3191 | __attribute__nonnull__(pTHX_4); | |
3192 | ||
765f542d | 3193 | #endif |
cea2e8a9 | 3194 | #endif |
1d7c1841 | 3195 | |
0cb96387 | 3196 | #if defined(PERL_IN_TOKE_C) || defined(PERL_DECL_PROT) |
cea2e8a9 GS |
3197 | STATIC void S_check_uni(pTHX); |
3198 | STATIC void S_force_next(pTHX_ I32 type); | |
46c461b5 AL |
3199 | STATIC char* S_force_version(pTHX_ char *start, int guessing) |
3200 | __attribute__nonnull__(pTHX_1); | |
3201 | ||
3202 | STATIC char* S_force_word(pTHX_ char *start, int token, int check_keyword, int allow_pack, int allow_tick) | |
3203 | __attribute__nonnull__(pTHX_1); | |
3204 | ||
3205 | STATIC SV* S_tokeq(pTHX_ SV *sv) | |
3206 | __attribute__nonnull__(pTHX_1); | |
3207 | ||
8eceec63 | 3208 | STATIC int S_pending_ident(pTHX); |
f54cb97a | 3209 | STATIC char* S_scan_const(pTHX_ char *start) |
46c461b5 | 3210 | __attribute__warn_unused_result__ |
abb2c242 | 3211 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
3212 | |
3213 | STATIC char* S_scan_formline(pTHX_ char *s) | |
46c461b5 | 3214 | __attribute__warn_unused_result__ |
abb2c242 | 3215 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
3216 | |
3217 | STATIC char* S_scan_heredoc(pTHX_ char *s) | |
46c461b5 | 3218 | __attribute__warn_unused_result__ |
abb2c242 | 3219 | __attribute__nonnull__(pTHX_1); |
f54cb97a AL |
3220 | |
3221 | STATIC char* S_scan_ident(pTHX_ char *s, const char *send, char *dest, STRLEN destlen, I32 ck_uni) | |
abb2c242 JH |
3222 | __attribute__nonnull__(pTHX_1) |
3223 | __attribute__nonnull__(pTHX_2) | |
3224 | __attribute__nonnull__(pTHX_3); | |
f54cb97a | 3225 | |
46c461b5 AL |
3226 | STATIC char* S_scan_inputsymbol(pTHX_ char *start) |
3227 | __attribute__warn_unused_result__ | |
3228 | __attribute__nonnull__(pTHX_1); | |
3229 | ||
3230 | STATIC char* S_scan_pat(pTHX_ char *start, I32 type) | |
3231 | __attribute__warn_unused_result__ | |
3232 | __attribute__nonnull__(pTHX_1); | |
3233 | ||
3234 | STATIC char* S_scan_str(pTHX_ char *start, int keep_quoted, int keep_delims) | |
3235 | __attribute__warn_unused_result__ | |
3236 | __attribute__nonnull__(pTHX_1); | |
3237 | ||
3238 | STATIC char* S_scan_subst(pTHX_ char *start) | |
3239 | __attribute__warn_unused_result__ | |
3240 | __attribute__nonnull__(pTHX_1); | |
3241 | ||
3242 | STATIC char* S_scan_trans(pTHX_ char *start) | |
3243 | __attribute__warn_unused_result__ | |
3244 | __attribute__nonnull__(pTHX_1); | |
3245 | ||
3246 | STATIC char* S_scan_word(pTHX_ char *s, char *dest, STRLEN destlen, int allow_package, STRLEN *slp) | |
3247 | __attribute__nonnull__(pTHX_1) | |
3248 | __attribute__nonnull__(pTHX_2) | |
3249 | __attribute__nonnull__(pTHX_5); | |
3250 | ||
3251 | STATIC char* S_skipspace(pTHX_ char *s) | |
3252 | __attribute__warn_unused_result__ | |
3253 | __attribute__nonnull__(pTHX_1); | |
3254 | ||
3255 | STATIC char* S_swallow_bom(pTHX_ U8 *s) | |
3256 | __attribute__warn_unused_result__ | |
3257 | __attribute__nonnull__(pTHX_1); | |
3258 | ||
f54cb97a | 3259 | STATIC void S_checkcomma(pTHX_ char *s, const char *name, const char *what) |
abb2c242 JH |
3260 | __attribute__nonnull__(pTHX_1) |
3261 | __attribute__nonnull__(pTHX_2) | |
3262 | __attribute__nonnull__(pTHX_3); | |
f54cb97a | 3263 | |
46c461b5 AL |
3264 | STATIC void S_force_ident(pTHX_ const char *s, int kind) |
3265 | __attribute__nonnull__(pTHX_1); | |
3266 | ||
3267 | STATIC void S_incline(pTHX_ char *s) | |
3268 | __attribute__nonnull__(pTHX_1); | |
3269 | ||
3270 | STATIC int S_intuit_method(pTHX_ char *s, GV *gv) | |
3271 | __attribute__nonnull__(pTHX_1) | |
3272 | __attribute__nonnull__(pTHX_2); | |
3273 | ||
3274 | STATIC int S_intuit_more(pTHX_ char *s) | |
3275 | __attribute__nonnull__(pTHX_1); | |
3276 | ||
3277 | STATIC I32 S_lop(pTHX_ I32 f, int x, char *s) | |
3278 | __attribute__nonnull__(pTHX_3); | |
3279 | ||
f54cb97a | 3280 | STATIC void S_missingterm(pTHX_ char *s) |
abb2c242 | 3281 | __attribute__noreturn__; |
f54cb97a | 3282 | |
46c461b5 AL |
3283 | STATIC void S_no_op(pTHX_ const char *what, char *s) |
3284 | __attribute__nonnull__(pTHX_1); | |
3285 | ||
cea2e8a9 | 3286 | STATIC void S_set_csh(pTHX); |
46c461b5 AL |
3287 | STATIC I32 S_sublex_done(pTHX) |
3288 | __attribute__warn_unused_result__; | |
3289 | ||
3290 | STATIC I32 S_sublex_push(pTHX) | |
3291 | __attribute__warn_unused_result__; | |
3292 | ||
3293 | STATIC I32 S_sublex_start(pTHX) | |
3294 | __attribute__warn_unused_result__; | |
3295 | ||
255164ba DM |
3296 | STATIC char * S_filter_gets(pTHX_ SV *sv, PerlIO *fp, STRLEN append) |
3297 | __attribute__warn_unused_result__ | |
3298 | __attribute__nonnull__(pTHX_1) | |
3299 | __attribute__nonnull__(pTHX_2); | |
3300 | ||
3301 | STATIC HV * S_find_in_my_stash(pTHX_ const char *pkgname, I32 len) | |
3302 | __attribute__warn_unused_result__ | |
3303 | __attribute__nonnull__(pTHX_1); | |
3304 | ||
aec46f14 AL |
3305 | STATIC SV* S_new_constant(pTHX_ const char *s, STRLEN len, const char *key, SV *sv, SV *pv, const char *type) |
3306 | __attribute__nonnull__(pTHX_3) | |
3307 | __attribute__nonnull__(pTHX_4); | |
3308 | ||
8fa7f367 | 3309 | # if defined(DEBUGGING) |
46c461b5 AL |
3310 | STATIC int S_tokereport(pTHX_ const char *s, I32 rv) |
3311 | __attribute__nonnull__(pTHX_1); | |
3312 | ||
8fa7f367 | 3313 | # endif |
cea2e8a9 GS |
3314 | STATIC int S_ao(pTHX_ int toketype); |
3315 | STATIC void S_depcom(pTHX); | |
bfed75c6 | 3316 | STATIC const char* S_incl_perldb(pTHX); |
155aba94 | 3317 | #if 0 |
cea2e8a9 GS |
3318 | STATIC I32 S_utf16_textfilter(pTHX_ int idx, SV *sv, int maxlen); |
3319 | STATIC I32 S_utf16rev_textfilter(pTHX_ int idx, SV *sv, int maxlen); | |
155aba94 | 3320 | #endif |
c39cd008 GS |
3321 | # if defined(PERL_CR_FILTER) |
3322 | STATIC I32 S_cr_textfilter(pTHX_ int idx, SV *sv, int maxlen); | |
cea2e8a9 | 3323 | # endif |
864dbfa3 | 3324 | #endif |
1d7c1841 | 3325 | |
0cb96387 | 3326 | #if defined(PERL_IN_UNIVERSAL_C) || defined(PERL_DECL_PROT) |
46c461b5 AL |
3327 | STATIC SV* S_isa_lookup(pTHX_ HV *stash, const char *name, HV *name_stash, int len, int level) |
3328 | __attribute__nonnull__(pTHX_2); | |
3329 | ||
864dbfa3 | 3330 | #endif |
1d7c1841 | 3331 | |
2d31dd6a | 3332 | #if defined(PERL_IN_LOCALE_C) || defined(PERL_DECL_PROT) |
27da23d5 | 3333 | #if defined(USE_LOCALE_NUMERIC) || defined(USE_LOCALE_COLLATE) |
8772537c AL |
3334 | STATIC char* S_stdize_locale(pTHX_ char* locs) |
3335 | __attribute__nonnull__(pTHX_1); | |
3336 | ||
2d31dd6a | 3337 | #endif |
27da23d5 | 3338 | #endif |
2d31dd6a NIS |
3339 | |
3340 | #if defined(PERL_IN_UTIL_C) || defined(PERL_DECL_PROT) | |
8772537c AL |
3341 | STATIC COP* S_closest_cop(pTHX_ COP *cop, const OP *o) |
3342 | __attribute__nonnull__(pTHX_1); | |
3343 | ||
cea2e8a9 | 3344 | STATIC SV* S_mess_alloc(pTHX); |
255164ba DM |
3345 | STATIC const char * S_vdie_croak_common(pTHX_ const char *pat, va_list *args, STRLEN *msglen, I32* utf8); |
3346 | STATIC void S_vdie_common(pTHX_ const char *message, STRLEN msglen, I32 utf8); | |
864dbfa3 | 3347 | #endif |
1d7c1841 | 3348 | |
4801ca72 JH |
3349 | #if defined(PERL_IN_NUMERIC_C) || defined(PERL_DECL_PROT) |
3350 | STATIC NV S_mulexp10(NV value, I32 exponent); | |
3351 | #endif | |
3352 | ||
646ca15d JH |
3353 | #if defined(PERL_IN_UTF8_C) || defined(PERL_DECL_PROT) |
3354 | STATIC STRLEN S_is_utf8_char_slow(pTHX_ const U8 *s, const STRLEN len) | |
3355 | __attribute__nonnull__(pTHX_1); | |
3356 | ||
3357 | #endif | |
3358 | ||
902f5b58 JH |
3359 | START_EXTERN_C |
3360 | ||
4373e329 | 3361 | PERL_CALLCONV void Perl_sv_setsv_flags(pTHX_ SV* dsv, SV* ssv, I32 flags) |
abb2c242 | 3362 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 3363 | |
4373e329 | 3364 | PERL_CALLCONV void Perl_sv_catpvn_flags(pTHX_ SV* sv, const char* ptr, STRLEN len, I32 flags) |
abb2c242 JH |
3365 | __attribute__nonnull__(pTHX_1) |
3366 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 3367 | |
4373e329 | 3368 | PERL_CALLCONV void Perl_sv_catsv_flags(pTHX_ SV* dsv, SV* ssv, I32 flags) |
abb2c242 | 3369 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 3370 | |
4373e329 | 3371 | PERL_CALLCONV STRLEN Perl_sv_utf8_upgrade_flags(pTHX_ SV *sv, I32 flags) |
abb2c242 | 3372 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 3373 | |
46c461b5 AL |
3374 | PERL_CALLCONV char* Perl_sv_pvn_force_flags(pTHX_ SV* sv, STRLEN* lp, I32 flags) |
3375 | __attribute__nonnull__(pTHX_1); | |
3376 | ||
4373e329 | 3377 | PERL_CALLCONV void Perl_sv_copypv(pTHX_ SV* dsv, SV* ssv) |
abb2c242 JH |
3378 | __attribute__nonnull__(pTHX_1) |
3379 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 3380 | |
4373e329 | 3381 | PERL_CALLCONV char* Perl_my_atof2(pTHX_ const char *s, NV* value) |
abb2c242 JH |
3382 | __attribute__nonnull__(pTHX_1) |
3383 | __attribute__nonnull__(pTHX_2); | |
f54cb97a | 3384 | |
706e3e0f | 3385 | PERL_CALLCONV int Perl_my_socketpair(int family, int type, int protocol, int fd[2]); |
f8c7b90f | 3386 | #ifdef PERL_OLD_COPY_ON_WRITE |
46c461b5 AL |
3387 | PERL_CALLCONV SV* Perl_sv_setsv_cow(pTHX_ SV* dsv, SV* ssv) |
3388 | __attribute__nonnull__(pTHX_1) | |
3389 | __attribute__nonnull__(pTHX_2); | |
3390 | ||
ed252734 | 3391 | #endif |
902f5b58 | 3392 | |
e87a358a | 3393 | #if defined(USE_PERLIO) && !defined(USE_SFIO) |
66a1b24b AL |
3394 | PERL_CALLCONV int Perl_PerlIO_close(pTHX_ PerlIO *f); |
3395 | PERL_CALLCONV int Perl_PerlIO_fill(pTHX_ PerlIO *f); | |
3396 | PERL_CALLCONV int Perl_PerlIO_fileno(pTHX_ PerlIO *f); | |
3397 | PERL_CALLCONV int Perl_PerlIO_eof(pTHX_ PerlIO *f); | |
3398 | PERL_CALLCONV int Perl_PerlIO_error(pTHX_ PerlIO *f); | |
3399 | PERL_CALLCONV int Perl_PerlIO_flush(pTHX_ PerlIO *f); | |
3400 | PERL_CALLCONV void Perl_PerlIO_clearerr(pTHX_ PerlIO *f); | |
3401 | PERL_CALLCONV void Perl_PerlIO_set_cnt(pTHX_ PerlIO *f, int cnt); | |
3402 | PERL_CALLCONV void Perl_PerlIO_set_ptrcnt(pTHX_ PerlIO *f, STDCHAR *ptr, int cnt) | |
3403 | __attribute__nonnull__(pTHX_2); | |
3404 | ||
3405 | PERL_CALLCONV void Perl_PerlIO_setlinebuf(pTHX_ PerlIO *f); | |
3406 | PERL_CALLCONV SSize_t Perl_PerlIO_read(pTHX_ PerlIO *f, void *buf, Size_t count) | |
3407 | __attribute__nonnull__(pTHX_2); | |
3408 | ||
3409 | PERL_CALLCONV SSize_t Perl_PerlIO_write(pTHX_ PerlIO *f, const void *buf, Size_t count) | |
3410 | __attribute__nonnull__(pTHX_2); | |
3411 | ||
3412 | PERL_CALLCONV SSize_t Perl_PerlIO_unread(pTHX_ PerlIO *f, const void *buf, Size_t count) | |
3413 | __attribute__nonnull__(pTHX_2); | |
3414 | ||
3415 | PERL_CALLCONV Off_t Perl_PerlIO_tell(pTHX_ PerlIO *f); | |
3416 | PERL_CALLCONV int Perl_PerlIO_seek(pTHX_ PerlIO *f, Off_t offset, int whence); | |
3417 | ||
3418 | PERL_CALLCONV STDCHAR * Perl_PerlIO_get_base(pTHX_ PerlIO *f); | |
3419 | PERL_CALLCONV STDCHAR * Perl_PerlIO_get_ptr(pTHX_ PerlIO *f); | |
255164ba DM |
3420 | PERL_CALLCONV int Perl_PerlIO_get_bufsiz(pTHX_ PerlIO *f) |
3421 | __attribute__warn_unused_result__; | |
3422 | ||
3423 | PERL_CALLCONV int Perl_PerlIO_get_cnt(pTHX_ PerlIO *f) | |
3424 | __attribute__warn_unused_result__; | |
3425 | ||
e87a358a | 3426 | |
46c461b5 AL |
3427 | PERL_CALLCONV PerlIO * Perl_PerlIO_stdin(pTHX) |
3428 | __attribute__warn_unused_result__; | |
3429 | ||
3430 | PERL_CALLCONV PerlIO * Perl_PerlIO_stdout(pTHX) | |
3431 | __attribute__warn_unused_result__; | |
3432 | ||
3433 | PERL_CALLCONV PerlIO * Perl_PerlIO_stderr(pTHX) | |
3434 | __attribute__warn_unused_result__; | |
3435 | ||
e87a358a | 3436 | #endif /* PERLIO_LAYERS */ |
582ed04c | 3437 | |
d6721266 DM |
3438 | PERL_CALLCONV void Perl_deb_stack_all(pTHX); |
3439 | #ifdef PERL_IN_DEB_C | |
f75877b5 SH |
3440 | STATIC void S_deb_stack_n(pTHX_ SV** stack_base, I32 stack_min, I32 stack_max, I32 mark_min, I32 mark_max) |
3441 | __attribute__nonnull__(pTHX_1); | |
3442 | ||
d6721266 DM |
3443 | #endif |
3444 | ||
66a1b24b AL |
3445 | PERL_CALLCONV PADLIST* Perl_pad_new(pTHX_ int flags) |
3446 | __attribute__malloc__ | |
3447 | __attribute__warn_unused_result__; | |
3448 | ||
f75877b5 SH |
3449 | PERL_CALLCONV void Perl_pad_undef(pTHX_ CV* cv) |
3450 | __attribute__nonnull__(pTHX_1); | |
3451 | ||
4373e329 | 3452 | PERL_CALLCONV PADOFFSET Perl_pad_add_name(pTHX_ const char *name, HV* typestash, HV* ourstash, bool clone) |
abb2c242 | 3453 | __attribute__nonnull__(pTHX_1); |
f54cb97a | 3454 | |
f75877b5 SH |
3455 | PERL_CALLCONV PADOFFSET Perl_pad_add_anon(pTHX_ SV* sv, OPCODE op_type) |
3456 | __attribute__nonnull__(pTHX_1); | |
3457 | ||
66a1b24b AL |
3458 | PERL_CALLCONV void Perl_pad_check_dup(pTHX_ const char* name, bool is_our, const HV* ourstash) |
3459 | __attribute__nonnull__(pTHX_1) | |
3460 | __attribute__nonnull__(pTHX_3); | |
3461 | ||
dd2155a4 | 3462 | #ifdef DEBUGGING |
66a1b24b AL |
3463 | PERL_CALLCONV void Perl_pad_setsv(pTHX_ PADOFFSET po, SV* sv) |
3464 | __attribute__nonnull__(pTHX_2); | |
3465 | ||
dd2155a4 DM |
3466 | #endif |
3467 | PERL_CALLCONV void Perl_pad_block_start(pTHX_ int full); | |
3468 | PERL_CALLCONV void Perl_pad_tidy(pTHX_ padtidy_type type); | |
66a1b24b AL |
3469 | PERL_CALLCONV void Perl_do_dump_pad(pTHX_ I32 level, PerlIO *file, PADLIST *padlist, int full) |
3470 | __attribute__nonnull__(pTHX_2); | |
3471 | ||
3472 | PERL_CALLCONV void Perl_pad_fixup_inner_anons(pTHX_ PADLIST *padlist, CV *old_cv, CV *new_cv) | |
46c461b5 AL |
3473 | __attribute__nonnull__(pTHX_1) |
3474 | __attribute__nonnull__(pTHX_2) | |
3475 | __attribute__nonnull__(pTHX_3); | |
66a1b24b AL |
3476 | |
3477 | ||
3478 | PERL_CALLCONV void Perl_pad_push(pTHX_ PADLIST *padlist, int depth) | |
3479 | __attribute__nonnull__(pTHX_1); | |
dd2155a4 | 3480 | |
901017d6 AL |
3481 | PERL_CALLCONV HV* Perl_pad_compname_type(pTHX_ const PADOFFSET po) |
3482 | __attribute__warn_unused_result__; | |
3483 | ||
dd2155a4 DM |
3484 | |
3485 | #if defined(PERL_IN_PAD_C) || defined(PERL_DECL_PROT) | |
f75877b5 SH |
3486 | STATIC PADOFFSET S_pad_findlex(pTHX_ const char *name, const CV* cv, U32 seq, int warn, SV** out_capture, SV** out_name_sv, int *out_flags) |
3487 | __attribute__nonnull__(pTHX_1) | |
3488 | __attribute__nonnull__(pTHX_2) | |
3489 | __attribute__nonnull__(pTHX_6) | |
3490 | __attribute__nonnull__(pTHX_7); | |
3491 | ||
dd2155a4 | 3492 | # if defined(DEBUGGING) |
66a1b24b AL |
3493 | STATIC void S_cv_dump(pTHX_ const CV *cv, const char *title) |
3494 | __attribute__nonnull__(pTHX_1) | |
3495 | __attribute__nonnull__(pTHX_2); | |
3496 | ||
dd2155a4 | 3497 | # endif |
dd2155a4 | 3498 | #endif |
a3b680e6 | 3499 | PERL_CALLCONV CV* Perl_find_runcv(pTHX_ U32 *db_seqp) |
abb2c242 | 3500 | __attribute__warn_unused_result__; |