More checks for printable asciis

此提交包含在:
2025-11-03 20:46:12 +01:00
父節點 d0de7b8f3b
當前提交 70f7289c8c
共有 3 個檔案被更改,包括 27 行新增8 行删除

查看文件

@@ -238,3 +238,16 @@ std::string utils::catv(std::string_view view)
}
return result;
}
bool utils::is_printable_ascii(std::string view)
{
for(char c : view)
{
if( !(c >= ' ' && c <= '~'))
{
return false;
}
}
return true;
}