This commit is contained in:
lzwdgc 2024-02-03 13:24:10 +03:00
parent 55e95ba805
commit 98425912c2

View file

@ -52,6 +52,8 @@ int main(int argc, char *argv[]) {
for (auto &&line : lines) {
boost::to_upper(line); // can be bad?
boost::trim(line);
boost::replace_all(line, " ", ""); // can be bad?
memcpy((char *)s.p, line.c_str(), line.size() + 1);
s.skip(line.size() + 1);
}