mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-21 21:22:31 +03:00
fix wrong return type
This commit is contained in:
@ -37,7 +37,7 @@ class MD5Builder {
|
||||
void addHexString(const char * data);
|
||||
void addHexString(char * data){ addHexString((const char*)data); }
|
||||
void addHexString(String data){ addHexString(data.c_str()); }
|
||||
void addStream(Stream & stream, size_t len);
|
||||
bool addStream(Stream & stream, int len);
|
||||
void calculate(void);
|
||||
void getBytes(uint8_t * output);
|
||||
void getChars(char * output);
|
||||
|
Reference in New Issue
Block a user