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