mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-30 16:24:09 +03:00
Changing from long to ssize_t (int) for write(), print(), println() return.
This commit is contained in:
@ -283,9 +283,9 @@ class SdFile : public Print {
|
||||
}
|
||||
/** \return SdVolume that contains this file. */
|
||||
SdVolume* volume(void) const {return vol_;}
|
||||
long write(uint8_t b);
|
||||
long write(const void* buf, uint16_t nbyte);
|
||||
long write(const char* str);
|
||||
ssize_t write(uint8_t b);
|
||||
ssize_t write(const void* buf, uint16_t nbyte);
|
||||
ssize_t write(const char* str);
|
||||
void write_P(PGM_P str);
|
||||
void writeln_P(PGM_P str);
|
||||
//------------------------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user