RTL_IS_POWER_OF_TWO - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTRTL_H
#ifndef RTL_IS_POWER_OF_TWO

#define RTL_IS_POWER_OF_TWO(Value) ((Value != 0) && !((Value) & ((Value) - 1)))

#endif
#endif

View code on GitHub

NtDoc

No description available.