Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re^6: Better way to force Inline to use compiled binary instead of C source?

by syphilis (Archbishop)
on Jun 29, 2022 at 04:02 UTC ( [id://11145169]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    extern int bar (int);
    extern int baz (int);
    
  2. or download this
    #define NVSIZE 100
    int baz (int);
    
  3. or download this
    #include "baz.h"
    
    int baz (int in) {
      return in + NVSIZE;
    }
    
  4. or download this
    use warnings;
    
    ...
    EOC
    
    foo(42);
    
  5. or download this
    bar: 42
    baz: 142
    NVSIZE: 8
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11145169]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (4)
As of 2024-04-18 00:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found