mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-31 20:52:13 +01:00
Modified begin() & end() for read/write
begin() and end() only allowed read access, these changes now allow both.
This commit is contained in:
parent
f68a722bde
commit
0e8904350d
@ -161,8 +161,10 @@ public:
|
|||||||
void toCharArray(char *buf, unsigned int bufsize, unsigned int index=0) const
|
void toCharArray(char *buf, unsigned int bufsize, unsigned int index=0) const
|
||||||
{getBytes((unsigned char *)buf, bufsize, index);}
|
{getBytes((unsigned char *)buf, bufsize, index);}
|
||||||
const char * c_str() const { return buffer; }
|
const char * c_str() const { return buffer; }
|
||||||
const char* begin() { return c_str(); }
|
char* begin() { return buffer; }
|
||||||
const char* end() { return c_str() + length(); }
|
char* end() { return buffer + length(); }
|
||||||
|
const char* begin() const { return c_str(); }
|
||||||
|
const char* end() const { return c_str() + length(); }
|
||||||
|
|
||||||
// search
|
// search
|
||||||
int indexOf( char ch ) const;
|
int indexOf( char ch ) const;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user