On Mon, Sep 10, 2001 at 11:23:28AM +0800, cliff wrote:
> Is there anyone ever calling C subroutine in Perl program ?

There are several ways of calling C code from Perl:

    1) Inline::C, available from CPAN, allows you to embed C code directly
       in your Perl program;

    2) XS (see perldoc perlxs and perldoc perlxstut) is Perl's extension
       language, for writing C and C++ extensions;

    3) SWIG (www.swig.org) is like XS, in that it's an extension language
       for writing C, C++, and ObjC extensions, but it supports more than
       just Perl.


Michael
--
Administrator                      www.shoebox.net
Programmer, System Administrator   www.gallanttech.com
--

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to