mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 23:57:10 -04:00
280c8344cd
Preparation for merging with the wsjtx project repository.
23 lines
315 B
C
23 lines
315 B
C
#ifdef CVF
|
|
extern int __stdcall IGRAY(int *n0, int *idir)
|
|
#else
|
|
int igray_(int *n0, int *idir)
|
|
#endif
|
|
{
|
|
int n;
|
|
unsigned long sh;
|
|
unsigned long nn;
|
|
n=*n0;
|
|
|
|
if(*idir>0) return (n ^ (n >> 1));
|
|
|
|
sh = 1;
|
|
nn = (n >> sh);
|
|
while (nn > 0) {
|
|
n ^= nn;
|
|
sh <<= 1;
|
|
nn = (n >> sh);
|
|
}
|
|
return (n);
|
|
}
|