mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 07:49:52 +03:00
Update ArduinoJson to 6.18.3
This commit is contained in:
@@ -45,6 +45,13 @@ class String {
|
||||
return _str == s;
|
||||
}
|
||||
|
||||
bool concat(const char * rhs) {
|
||||
if (!rhs) {
|
||||
return 0;
|
||||
}
|
||||
_str += rhs;
|
||||
return 1;
|
||||
}
|
||||
|
||||
private:
|
||||
std::string _str;
|
||||
@@ -60,7 +67,6 @@ inline bool operator!=(const ::String & lhs, const ::String & rhs) {
|
||||
return lhs.c_str() != rhs.c_str();
|
||||
}
|
||||
|
||||
|
||||
size_t strlcpy(char * __restrict dst, const char * __restrict src, size_t dsize);
|
||||
size_t strlcat(char * dst, const char * src, size_t siz);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user