From: "Pavle Lukic" <[EMAIL PROTECTED]> > what is perl XS in relation > to perl: extension, subset, > or something else? > Is it possible every perl code > to 'convert' into perl XS, and how? > I am asking for a generic working concept.
From perldoc perlxs XS is an interface description file format used to create an extension interface between Perl and C code (or a C library) which one wishes to use with Perl. The XS interface is combined with the library to create a new library which can then be either dynamically loaded or statically linked into perl. The XS interface description is written in the XS language and is the core component of the Perl extension interface. ... Does this tell you anything? :-) Basicaly it's a way to use C libraries from Perl or to write parts of Perl modules in C. Jenda ===== [EMAIL PROTECTED] === http://Jenda.Krynicky.cz ===== When it comes to wine, women and song, wizards are allowed to get drunk and croon as much as they like. -- Terry Pratchett in Sourcery -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]