Skip to content
Snippets Groups Projects
Commit 3dacdcc2 authored by Pierre Loic Garoche's avatar Pierre Loic Garoche
Browse files

Convertion operators

git-svn-id: https://cavale.enseeiht.fr/svn/lustrec/lustre_compiler/trunk@258 041b043f-8d7c-46b2-b46e-ef0dd855326e
parent b616fe7a
No related branches found
No related tags found
No related merge requests found
int real_to_int (double in1) { return (int)in1; }
double int_to_real (int in1) { return (double)in1; }
int real_to_int (double in1);
double int_to_real (int in1);
function real_to_int (in1: real) returns (out: int) prototype C;
function int_to_real (in1: int) returns (out: real) prototype C;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment