We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
begin
end
1 parent ae0d9dc commit 07fa22fCopy full SHA for 07fa22f
hardware/arduino/avr/cores/arduino/WString.h
@@ -160,9 +160,9 @@ class String
160
void getBytes(unsigned char *buf, unsigned int bufsize, unsigned int index=0) const;
161
void toCharArray(char *buf, unsigned int bufsize, unsigned int index=0) const
162
{getBytes((unsigned char *)buf, bufsize, index);}
163
- const char * c_str() const { return buffer; }
164
- const char* begin() { return c_str(); }
165
- const char* end() { return c_str() + length(); }
+ const char* c_str() const { return buffer; }
+ const char* begin() const { return c_str(); }
+ const char* end() const { return c_str() + length(); }
166
167
// search
168
int indexOf( char ch ) const;
0 commit comments