ISCE_INSAR/components/isceobj/Util/include/PowerOfTwo.h

24 lines
514 B
C
Raw Normal View History

2025-01-16 09:33:42 +00:00
/*
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*
* NASA Jet Propulsion Laboratory
* California Institute of Technology
* (C) 2004-2005 All Rights Reserved
*
* <LicenseText>
*
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
#if !defined(_POWEROFTWO_H_)
#define _POWEROFTWO_H_
extern "C"
{
bool isaPowerOfTwo(int);
int whichPowerOfTwo(unsigned int);
}
#endif