タグ付けされた質問 「toupper」

2
このCコードでアルファベットが複数の範囲に分割されるのはなぜですか?
カスタムライブラリで実装を見ました: inline int is_upper_alpha(char chValue) { if (((chValue >= 'A') && (chValue <= 'I')) || ((chValue >= 'J') && (chValue <= 'R')) || ((chValue >= 'S') && (chValue <= 'Z'))) return 1; return 0; } それはイースターエッグですか、それとも標準のC / C ++メソッドと比較した場合の利点は何ですか? inline int is_upper_alpha(char chValue) { return ((chValue >= 'A') && (chValue …
161 c++  c  character  toupper 
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.