-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxynMem.c
60 lines (48 loc) · 1.01 KB
/
xynMem.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
* xynMem.c
*
* Created on: Mar 11, 2011
* Author: mousomer
*/
int xynConvert_i2f ( int* inp, float* out, long len )
{
assert (inp!=NULL && out!=NULL && len>=0 );
while (len-->0)
*out++ = (float) *inp++;
return OK;
}
int xynConvert_i2c ( int* inp, char* out, long len )
{
assert (inp!=NULL && out!=NULL && len>=0 );
while (len-->0)
*out++ = (char) *inp++;
return OK;
}
int xynConvert_f2i ( float* inp, int* out, long len )
{
assert (inp!=NULL && out!=NULL && len>=0 );
while (len-->0)
*out++ = (int) *inp++;
return OK;
}
int xynConvert_f2c ( float* inp, char* out, long len )
{
assert (inp!=NULL && out!=NULL && len>=0 );
while (len-->0)
*out++ = (char) *inp++;
return OK;
}
int xynConvert_c2i ( char* inp, int* out, long len )
{
assert (inp!=NULL && out!=NULL && len>=0 );
while (len-->0)
*out++ = (int) *inp++;
return OK;
}
int xynConvert_c2f ( char* inp, float* out, long len )
{
assert (inp!=NULL && out!=NULL && len>=0 );
while (len-->0)
*out++ = (float) *inp++;
return OK;
}