We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f0ba88 commit 4a3ef50Copy full SHA for 4a3ef50
cores/esp32/WString.h
@@ -110,6 +110,7 @@ class String {
110
unsigned char concat(const String &str);
111
unsigned char concat(const char *cstr);
112
unsigned char concat(const char *cstr, unsigned int length);
113
+ unsigned char concat(const uint8_t *cstr, unsigned int length) {return concat((const char*)cstr, length);}
114
unsigned char concat(char c);
115
unsigned char concat(unsigned char c);
116
unsigned char concat(int num);
0 commit comments