Question

How do I convert the following macro into a function?

#define xtime(x)   ((x<<1) ^ (((x>>7) & 1) * 0x1b))
Était-ce utile?

La solution

template<typename T>
T xtime(T x)
{
    return ((x<<1) ^ (((x>>7) & 1) * 0x1b));
}
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top