NCEPLIBS-g2 4.0.0
Loading...
Searching...
No Matches
mova2i.c
Go to the documentation of this file.
1
22int g2_mova2i_(unsigned char *a)
23{
24 return (int)(*a);
25}
26
38int g2_mova2i8_(unsigned char *a)
39{
40 return (long long int)(*a);
41}
int g2_mova2i_(unsigned char *a)
Derefrence char pointer and cast result as 32-bit int.
Definition mova2i.c:22
int g2_mova2i8_(unsigned char *a)
Derefrence char pointer and cast result as 64-bit int.
Definition mova2i.c:38