1
0
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:
Ivan Grokhotkov
2016-06-13 12:47:33 +08:00
parent 3640757692
commit 063e4cc88f
8 changed files with 484 additions and 62 deletions

View File

@@ -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;
};