mbed library sources. Supersedes mbed-src.

Dependents:   Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more

Revision:
187:0387e8f68319
Parent:
186:707f6e361f3e
Child:
188:bcfe06ba3d64
--- a/platform/DirHandle.h	Fri Jun 22 16:45:37 2018 +0100
+++ b/platform/DirHandle.h	Thu Sep 06 13:40:20 2018 +0100
@@ -80,7 +80,7 @@
      */
     virtual void rewind() = 0;
 
-    /** Get the sizeof the directory 
+    /** Get the sizeof the directory
      *
      *  @return         Number of files in the directory
      */
@@ -108,7 +108,10 @@
      *  @deprecated Replaced by `int DirHandle::close()'
      */
     MBED_DEPRECATED_SINCE("mbed-os-5.4", "Replaced by DirHandle::close")
-    virtual int closedir() { return close(); };
+    virtual int closedir()
+    {
+        return close();
+    };
 
     /** Return the directory entry at the current position, and
      *  advances the position to the next entry.
@@ -130,7 +133,10 @@
      * @deprecated Replaced by `void DirHandle::rewind()'
      */
     MBED_DEPRECATED_SINCE("mbed-os-5.4", "Replaced by DirHandle::rewind")
-    virtual void rewinddir() { rewind(); }
+    virtual void rewinddir()
+    {
+        rewind();
+    }
 
     /** Returns the current position of the DirHandle.
      *
@@ -140,7 +146,10 @@
      * @deprecated Replaced by `off_t DirHandle::tell()'
      */
     MBED_DEPRECATED_SINCE("mbed-os-5.4", "Replaced by DirHandle::tell")
-    virtual off_t telldir() { return tell(); }
+    virtual off_t telldir()
+    {
+        return tell();
+    }
 
     /** Sets the position of the DirHandle.
      *
@@ -148,7 +157,10 @@
      *  @deprecated Replaced by `void DirHandle::seek(off_t offset)'
      */
     MBED_DEPRECATED_SINCE("mbed-os-5.4", "Replaced by DirHandle::seek")
-    virtual void seekdir(off_t location) { seek(location); }
+    virtual void seekdir(off_t location)
+    {
+        seek(location);
+    }
 };
 
 /**@}*/