Quellcode durchsuchen

Add File truncate(size)

main
PaulStoffregen vor 4 Jahren
Ursprung
Commit
36bfbd1648
3 geänderte Dateien mit 9 neuen und 0 gelöschten Zeilen
  1. +3
    -0
      teensy/FS.h
  2. +3
    -0
      teensy3/FS.h
  3. +3
    -0
      teensy4/FS.h

+ 3
- 0
teensy/FS.h Datei anzeigen

@@ -101,6 +101,9 @@ public:
virtual void flush() {
if (f) f->flush();
}
virtual bool truncate(uint64_t size=0) {
return (f) ? f->truncate(size) : false;
}
virtual bool seek(uint64_t pos, int mode) {
return (f) ? f->seek(pos, mode) : false;
}

+ 3
- 0
teensy3/FS.h Datei anzeigen

@@ -101,6 +101,9 @@ public:
virtual void flush() {
if (f) f->flush();
}
virtual bool truncate(uint64_t size=0) {
return (f) ? f->truncate(size) : false;
}
virtual bool seek(uint64_t pos, int mode) {
return (f) ? f->seek(pos, mode) : false;
}

+ 3
- 0
teensy4/FS.h Datei anzeigen

@@ -101,6 +101,9 @@ public:
virtual void flush() {
if (f) f->flush();
}
virtual bool truncate(uint64_t size=0) {
return (f) ? f->truncate(size) : false;
}
virtual bool seek(uint64_t pos, int mode) {
return (f) ? f->seek(pos, mode) : false;
}

Laden…
Abbrechen
Speichern