mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 07:49:52 +03:00
changes to make it compile standalone
This commit is contained in:
@@ -56,6 +56,11 @@ inline bool operator==(const std::string & lhs, const ::String & rhs) {
|
||||
return lhs == rhs.c_str();
|
||||
}
|
||||
|
||||
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