1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-24 19:42:27 +03:00

Filesystem: fix File::available, add File::name

This commit is contained in:
Ivan Grokhotkov
2015-08-05 07:41:12 -04:00
parent 90efba073f
commit b5d9db91aa
4 changed files with 19 additions and 3 deletions

View File

@ -64,6 +64,7 @@ public:
size_t size() const;
void close();
operator bool() const;
const char* name() const;
protected:
FileImplPtr _p;