Project

General

Profile

Download (173 Bytes) Statistics
| Branch: | Tag: | Revision:
1
int real_to_int (double in1, int *out)
2
{
3
    *out = (int)in1;
4

    
5
    return *out;
6
}
7

    
8
double int_to_real (int in1, double *out)
9
{
10
    *out = (double)in1;
11

    
12
    return *out;
13
}
14

    
15

    
(2-2/6)