/
githubmirror
/
zstd
Обзор
Документация
Войти
/
githubmirror
/
zstd
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
regression
contrib/pzstd/main.cpp
27 строк
646 B
Yann Collet
fixed a bunch of headers after license change (#825)
31 авг 2017, 21:24
31 авг 2017, 21:24
e9dc204
Код
Авторство
О чём код?
/* * Copyright (c) 2016-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under both the BSD-style license (found in the * LICENSE file in the root directory of this source tree) and the GPLv2 (found * in the COPYING file in the root directory of this source tree). */ #include "ErrorHolder.h" #include "Options.h" #include "Pzstd.h" using namespace pzstd; int main(int argc, const char** argv) { Options options; switch (options.parse(argc, argv)) { case Options::Status::Failure: return 1; case Options::Status::Message: return 0; default: break; } return pzstdMain(options); }