| 920 | } |
| 921 | |
| 922 | inline bool CheckASCII(const std::string& s) { |
| 923 | for (auto c : s) { |
| 924 | if (static_cast<unsigned char>(c) > 127) { |
| 925 | return false; |
| 926 | } |
| 927 | } |
| 928 | return true; |
| 929 | } |
| 930 | |
| 931 | inline bool CheckAllowedJSON(const std::string& s) { |
| 932 | unsigned char char_code; |
no outgoing calls
no test coverage detected