/
niceSOFT
/
ninja
Обзор
Документация
Войти
/
niceSOFT
/
ninja
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/json.h
26 строк
908 B
spaette
typos
09 сен 2024, 17:36
09 сен 2024, 17:36
60838c1
Код
Авторство
О чём код?
// Copyright 2021 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #ifndef NINJA_JSON_H_ #define NINJA_JSON_H_ #include <string> // Encode a string in JSON format without enclosing quotes std::string EncodeJSONString(const std::string& in); // Print a string in JSON format to stdout without enclosing quotes void PrintJSONString(const std::string& in); #endif