元の投稿 http://bits.stephan-brumme.com/null.html
このコードは何をしますか? (答えられました、ありがとう)
どこで使用されますか?
bool hasZeroByteSimple(unsigned int x) { if ((x & 0x000000FF) == 0) return true; if ((x & 0x0000FF00) == 0) return true; if ((x & 0x00FF0000) == 0) return true; if ((x & 0xFF000000) == 0) return true; return false; }