mirror of
https://github.com/esp8266/Arduino.git
synced 2025-10-13 23:48:28 +03:00
Add tests for MD5Builder, reformat and clean up code
This commit is contained in:
@@ -25,15 +25,14 @@
|
||||
|
||||
|
||||
class StreamString: public Stream, public String {
|
||||
public:
|
||||
size_t write(const uint8_t *buffer, size_t size) override;
|
||||
size_t write(uint8_t data) override;
|
||||
|
||||
size_t write(const uint8_t *buffer, size_t size);
|
||||
size_t write(uint8_t data);
|
||||
|
||||
int available();
|
||||
int read();
|
||||
int peek();
|
||||
void flush();
|
||||
|
||||
int available() override;
|
||||
int read() override;
|
||||
int peek() override;
|
||||
void flush() override;
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user