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

Convertion operators

parent 14d694c7
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