We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c11b4c3 commit 87cb279Copy full SHA for 87cb279
api/String.h
@@ -108,6 +108,7 @@ class String
108
unsigned char concat(const String &str);
109
unsigned char concat(const char *cstr);
110
unsigned char concat(const char *cstr, unsigned int length);
111
+ unsigned char concat(const uint8_t *cstr, unsigned int length) {return concat((const char*)cstr, length);}
112
unsigned char concat(char c);
113
unsigned char concat(unsigned char num);
114
unsigned char concat(int num);
0 commit comments