mbed library sources. Supersedes mbed-src.

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

Revision:
187:0387e8f68319
Parent:
178:79309dc6340a
Child:
189:f392fc9709a3
--- a/platform/FilePath.h	Fri Jun 22 16:45:37 2018 +0100
+++ b/platform/FilePath.h	Thu Sep 06 13:40:20 2018 +0100
@@ -33,27 +33,27 @@
 /** Class FilePath
  *
  */
- 
+
 class FilePath {
 public:
     /** Constructor FilePath
      *
      *  @param file_path     The path of file.
-     */ 
-    FilePath(const char* file_path);
+     */
+    FilePath(const char *file_path);
 
-    const char* fileName(void);
+    const char *fileName(void);
 
     bool          isFileSystem(void);
-    FileSystemLike* fileSystem(void);
+    FileSystemLike *fileSystem(void);
 
     bool    isFile(void);
-    FileLike* file(void);
+    FileLike *file(void);
     bool    exists(void);
 
 private:
-    const char* file_name;
-    FileBase* fb;
+    const char *file_name;
+    FileBase *fb;
 };
 
 /**@}*/