Hi folks,
I am trying to embed perl in C. I downloaded Turbo C 2.01 compiler & installed it.
I got an example program from website
#include <EXTERN.h> /* from the Perl distribution */
#include <perl.h> /* from the Perl distribution
+ */
static PerlInterpreter *my_perl; /*** The Perl interpreter
+***/
int main(int argc, char **argv, char **env)
{
my_perl = perl_alloc();
perl_construct(my_perl);
perl_parse(my_perl, NULL, argc, argv, (char **)NULL);
perl_run(my_perl);
perl_destruct(my_perl);
perl_free(my_perl);
}
I didn't understand the functionality of this program, still i tried to compile it but got the following errors
Compiling E:\PERL_INC.C:
Error E:\PERL_INC.C 1: Unable to open include file 'EXTERN.H'
Error E:\PERL_INC.C 2: Unable to open include file 'PERL.H'
Error E:\PERL_INC.C 5: Declaration syntax error
Error E:\PERL_INC.C 10: Undefined symbol 'my_perl' in function main
Error E:\PERL_INC.C 12: Undefined symbol 'NULL' in function main
Warning E:\PERL_INC.C 16: Parameter 'env' is never used in function m
+ain
How do I resolve it?
Thanks in advance
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.