mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-03 21:57:02 +02:00
15 lines
451 B
C++
15 lines
451 B
C++
// Copyright Benoit Blanchon 2014-2016
|
|
// MIT License
|
|
//
|
|
// Arduino JSON library
|
|
// https://github.com/bblanchon/ArduinoJson
|
|
// If you like this project, please add a star!
|
|
|
|
#include "../../include/ArduinoJson/Internals/Encoding.hpp"
|
|
|
|
// How to escape special chars:
|
|
// _escapeTable[2*i+1] => the special char
|
|
// _escapeTable[2*i] => the char to use instead
|
|
const char ArduinoJson::Internals::Encoding::_escapeTable[] =
|
|
"\"\"\\\\b\bf\fn\nr\rt\t";
|