Added escaped char replacement

This commit is contained in:
Benoit Blanchon
2014-09-04 21:45:41 +02:00
parent 24d173c3b9
commit 0154fc15cb
3 changed files with 55 additions and 6 deletions

View File

@ -29,11 +29,7 @@ namespace ArduinoJson
}
// Get content of the JSON token
char* getText()
{
json[token->end] = 0;
return json + token->start;
}
char* getText();
// Get the number of children tokens
int childrenCount()