Re: [OT?] Dynamically loading Perl into C programs

2005-06-28 Thread Ken Williams
Hi Wren, Probably the first place to look is "perldoc perlembed", which describes in general how to embed a perl interpreter in C programs. There's no way that I know of for embedding chunks of perl (e.g. subroutines) in C without embedding the entire perl interpreter too. To do so would re

[OT?] Dynamically loading Perl into C programs

2005-06-28 Thread wren argetlahm
There's a project I'm working on (Paperboy RSS) that's written in C, the simplest part of which is basically applying XSLT to files with libxml2/libxslt. There's a separate but related project written in Perl that's going to use paperboy to do the heavy lifting but needs to be able to let users def