1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-30 16:24:09 +03:00

Adding seek() and size() functions to SD File class.

This commit is contained in:
David A. Mellis
2010-12-22 15:11:54 -06:00
parent 53f3e8ef92
commit 5057d5b109
2 changed files with 10 additions and 0 deletions

View File

@ -33,6 +33,8 @@ public:
virtual int peek();
virtual int available();
virtual void flush();
boolean seek(uint32_t pos);
uint32_t size();
void close();
operator bool();
};