// // Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2020 // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // #include "td/tl/tl_file_utils.h" #include #include #include int main(int argc, char *argv[]) { for (int i = 1; i < argc; i++) { std::string file_name = argv[i]; std::string old_contents = td::tl::get_file_contents(file_name, "rb"); std::string new_contents = td::tl::remove_documentation(old_contents); if (new_contents != old_contents && !td::tl::put_file_contents(file_name, "wb", new_contents)) { std::fprintf(stderr, "Can't write file %s\n", file_name.c_str()); std::abort(); } } }