| 7972 | } |
| 7973 | |
| 7974 | void normalize(std::u32string& input) { |
| 7975 | /** |
| 7976 | * Normalize the domain_name string to Unicode Normalization Form C. |
| 7977 | * @see https://www.unicode.org/reports/tr46/#ProcessingStepNormalize |
| 7978 | */ |
| 7979 | decompose_nfc(input); |
| 7980 | compose(input); |
| 7981 | } |
| 7982 | |
| 7983 | } // namespace ada::idna |
| 7984 | /* end file src/normalization.cpp */ |
no test coverage detected