heptagon/examples/extern_C
2010-07-27 11:12:33 +02:00
..
imports.ept Added an example of how to import external functions 2010-07-27 11:12:33 +02:00
mathext.c Added an example of how to import external functions 2010-07-27 11:12:33 +02:00
mathext.epi Added an example of how to import external functions 2010-07-27 11:12:33 +02:00
mathext.h Added an example of how to import external functions 2010-07-27 11:12:33 +02:00
README Added an example of how to import external functions 2010-07-27 11:12:33 +02:00

This example show how to import an external function written in C in an Heptagon program.

- The .epi file contains the signature of the function in Heptagon.
- Only functions with no side effects can be safely imported.
- The imported function must have the same calling convention as generated code (inputs given by value, outputs in a f_out structure).
- The generated code will include "mathext.h", that should define the step function