24 lines
514 B
C
24 lines
514 B
C
/*
|
|
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
*
|
|
* 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
|
|
|