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 c15ed77 commit 015b004Copy full SHA for 015b004
hardware/arduino/avr/cores/arduino/WString.h
@@ -98,6 +98,7 @@ class String
98
// concatenation is considered unsucessful.
99
unsigned char concat(const String &str);
100
unsigned char concat(const char *cstr);
101
+ unsigned char concat(const char *cstr, unsigned int length);
102
unsigned char concat(char c);
103
unsigned char concat(unsigned char c);
104
unsigned char concat(int num);
@@ -195,7 +196,6 @@ class String
195
196
void init(void);
197
void invalidate(void);
198
unsigned char changeBuffer(unsigned int maxStrLen);
- unsigned char concat(const char *cstr, unsigned int length);
199
200
// copy and move
201
String & copy(const char *cstr, unsigned int length);
0 commit comments