lustrec-tests/tests/lego_robot/controller/conv.c @ f910b2ed
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 |
|