Help for this page

Select Code to Download


  1. or download this
    use Inline C => Config => LIBS => '-lparser';
    
  2. or download this
    use Inline C => Config => LIBS => '-lfoo';
    
  3. or download this
    use Inline C => Config => LIBS => '-L/path/to/lib -lfoo';
    
  4. or download this
    use Inline C => Config =>
        BUILD_NOISY => 1,
        LIBS => '-L/path/to/lib -lfoo';
    
  5. or download this
    use Inline C => <<END_C;
    #include <stdio.h>
    ...
    
    END_C