eaebfad034
GitOrigin-RevId: 359e2b43322222922c44c430d3814b0a4c778dc6
24 lines
811 B
C++
24 lines
811 B
C++
//
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2019
|
|
//
|
|
// 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 <cstdio>
|
|
#include <cstdlib>
|
|
#include <string>
|
|
|
|
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();
|
|
}
|
|
}
|
|
}
|