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