This depends on whether you are executing all this in a Perl or C context. If you are attempting to call a Perl subroutine from a C function which in turn was called from within a Perl script using the
Inline::C module, you can use something like this to perform your task (largely based on code from
Inline::C-Cookbook):
#!/usr/bin/perl
use strict;
use warnings;
use Inline qw(C);
c_func('AAA:BBB');
sub perl_sub {
for (@_) {
/^([^:]+):([^:]+)$/;
print "$1 - $2\n";
}
}
__DATA__
__C__
void c_func(SV* text) {
Inline_Stack_Vars;
Inline_Stack_Push(newSVpvf("CCC:DDD"));
Inline_Stack_Done;
perl_call_pv("main::perl_sub", 0);
Inline_Stack_Void;
}
However, if your main() is a C function, I believe you need a different approach. I've never used it, but Inline::CPR ostensibly gives you a binary you can call from C which will handle the appropriate inheritance.
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.