Differences between version 2 and previous revision of perlapi(1).
Other diffs: Previous Major Revision, Previous Author, or view the Annotated Edit History
Newer page: | version 2 | Last edited on Tuesday, June 4, 2002 12:22:31 am | by perry | Revert |
Older page: | version 1 | Last edited on Tuesday, June 4, 2002 12:22:31 am | by perry | Revert |
@@ -1585,9 +1585,9 @@
Allocates a new Perl interpreter. See
perlembed.
- PerlInterpreter* perl_alloc()
+ !
PerlInterpreter* perl_alloc()
perl_construct
@@ -1595,27 +1595,27 @@
Initializes a new Perl interpreter. See
perlembed.
- void perl_construct(PerlInterpreter* interp)
+ void perl_construct(!
PerlInterpreter* interp)
perl_destruct
Shuts down a Perl interpreter. See perlembed.
- void perl_destruct(PerlInterpreter* interp)
+ void perl_destruct(!
PerlInterpreter* interp)
perl_free
Releases a Perl interpreter. See perlembed.
- void perl_free(PerlInterpreter* interp)
+ void perl_free(!
PerlInterpreter* interp)
perl_parse
@@ -1623,18 +1623,18 @@
Tells a Perl interpreter to parse a Perl script. See
perlembed.
- int perl_parse(PerlInterpreter* interp, XSINIT_t xsinit, int argc, char** argv, char** env)
+ int perl_parse(!
PerlInterpreter* interp, XSINIT_t xsinit, int argc, char** argv, char** env)
perl_run
Tells a Perl interpreter to run. See perlembed.
- int perl_run(PerlInterpreter* interp)
+ int perl_run(!
PerlInterpreter* interp)
PL_modglobal
@@ -2017,16 +2017,16 @@
bool strnNE(char* s1, char* s2, STRLEN len)
-StructCopy
+!
StructCopy
This is an architecture-independent macro to copy one
structure to another.
- void StructCopy(type src, type dest, type)
+ void !
StructCopy(type src, type dest, type)
SvCUR
@@ -3895,9 +3895,9 @@
The version identifier for an XS module. This
is usually handled automatically by
-ExtUtils::MakeMaker. See
+!
ExtUtils::!
MakeMaker. See
XS_VERSION_BOOTCHECK.
XS_VERSION_BOOTCHECK
@@ -3932,9 +3932,9 @@
With lots of help and suggestions from Dean Roehrich,
Malcolm Beattie, Andreas Koenig, Paul Hudson, Ilya
Zakharevich, Paul Marquess, Neil Bowers, Matthew Green, Tim
-Bunce, Spider Boardman, Ulrich Pfeifer, Stephen McCamant,
+Bunce, Spider Boardman, Ulrich Pfeifer, Stephen !
McCamant,
and Gurusamy Sarathy.
API Listing originally by Dean Roehrich