includes/std: Fixed wrong name of ispunct function

This commit is contained in:
WerWolv
2021-10-04 20:31:49 +02:00
parent 5a22ecd15e
commit e35ab5b459

View File

@@ -44,7 +44,7 @@ namespace std::ctype {
return std::ctype::isprint(c) && !std::ctype::isspace(c);
};
fn isgraph(char c) {
fn ispunct(char c) {
return std::ctype::isgraph(c) && !std::ctype::isalnum(c);
};