Skip to content

Commit 2750049

Browse files
committed
Revert "reference/cctype/isspace.md: Created sample implementation"
This reverts commit 3527568. I've reverted it because it causes confusion.
1 parent 4097b49 commit 2750049

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

reference/cctype/isspace.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,3 @@ isspace(' ') = 8192
5050
isspace('\n') = 8192
5151
isspace('0x0f') = 0
5252
```
53-
54-
## 実装例
55-
```cpp
56-
int isspace(int ch) {
57-
return ch == ' ' || ch == '\t' || ch == '\r' || ch == '\n' || ch == '\v' || ch == '\f';
58-
}
59-
```
60-
61-

0 commit comments

Comments
 (0)