mFS file system library for EEPROM memory chips.

Revision:
4:c77812997c9c
Parent:
3:1cbc15648de1
Child:
5:a0fe74dce80d
--- a/mfs.h	Mon Feb 21 09:51:05 2011 +0000
+++ b/mfs.h	Mon Feb 21 09:53:32 2011 +0000
@@ -88,7 +88,7 @@
     * @returns Block number of the file or 0xFFFF to indicate that file not found.
     */
     uint16 getFirstBlockOfFile(char filename[20]);
-    /** Create new empty file
+    /** Create a new empty file
     *
     * Reserves one block for the file created.
     *
@@ -136,6 +136,10 @@
     char mkfs(char createLabel);
 };
 
+/** mFS File handle class
+ * 
+ * This class is used as a handle for the files in mFS.
+ */
 class file {
 private:
     mfs *fs;   // Reference to the file system in use