Skip to content

Commit 4097b49

Browse files
committed
fix: Fixed wrong implementation code for islower()
1 parent e5b2c4f commit 4097b49

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

reference/cctype/islower.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ islower('\n') = 0
5151
islower('0x0f') = 0
5252
```
5353

54-
## 実装例
54+
## 実装例(ASCII互換文字コードの場合)
5555
```cpp
5656
int islower(int ch) {
5757
return ch >= 'a' && ch <= 'z';

0 commit comments

Comments
 (0)