/* * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * * NASA Jet Propulsion Laboratory * California Institute of Technology * (C) 2004-2005 All Rights Reserved * * * * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ #if !defined(_POWEROFTWO_H_) #define _POWEROFTWO_H_ extern "C" { bool isaPowerOfTwo(int); int whichPowerOfTwo(unsigned int); } #endif