Skip to content

Commit a094fce

Browse files
committed
fix: Added information for isupper
1 parent 2750049 commit a094fce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reference/cctype/isupper.md

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

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

0 commit comments

Comments
 (0)