Skip to content

Commit 46a42fe

Browse files
committed
fix: Added proper info for tolower and toupper
1 parent a094fce commit 46a42fe

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

reference/cctype/tolower.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ tolower('.') = .
4343
tolower('$') = $
4444
```
4545

46-
## 実装例
46+
## 実装例(ASCII互換文字コードの場合)
4747
```cpp
4848
int tolower(int ch) {
4949
if (isupper(ch)) {

reference/cctype/toupper.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ toupper('.') = .
4343
toupper('$') = $
4444
```
4545

46-
## 実装例
46+
## 実装例(ASCII互換文字コードの場合)
4747
```cpp
4848
int toupper(int ch) {
4949
if (islower(ch)) {

0 commit comments

Comments
 (0)