File format.
authorgkostka <kostka.grzegorz@gmail.com>
Mon, 7 Oct 2013 20:19:28 +0000 (20:19 +0000)
committergkostka <kostka.grzegorz@gmail.com>
Mon, 7 Oct 2013 20:19:28 +0000 (20:19 +0000)
src/ext4.h

index e4bcc5669da4d082aec503f17358846f6ded2af2..28f8b9aad067a6bda400ab7ed6f02b4cfc10d4b4 100644 (file)
@@ -189,19 +189,19 @@ int       ext4_fremove(const char *path);
  * @param      filename, (has to start from mountpoint)\r
  *                     /my_partition/my_file\r
  * @param      flags open file flags\r
- *     |---------------------------------------------------------------|\r
- *     |       r or rb                 O_RDONLY                            |\r
- *     |---------------------------------------------------------------|\r
- *     |       w or wb                 O_WRONLY|O_CREAT|O_TRUNC            |\r
- *     |---------------------------------------------------------------|\r
- *     |       a or ab                 O_WRONLY|O_CREAT|O_APPEND           |\r
- *     |---------------------------------------------------------------|\r
- *     |       r+ or rb+ or r+b        O_RDWR                              |\r
- *     |---------------------------------------------------------------|\r
- *     |       w+ or wb+ or w+b                O_RDWR|O_CREAT|O_TRUNC              |\r
- *     |---------------------------------------------------------------|\r
- *     |       a+ or ab+ or a+b                O_RDWR|O_CREAT|O_APPEND             |\r
- *     |---------------------------------------------------------------|\r
+ *  |---------------------------------------------------------------|\r
+ *  |   r or rb                 O_RDONLY                            |\r
+ *  |---------------------------------------------------------------|\r
+ *  |   w or wb                 O_WRONLY|O_CREAT|O_TRUNC            |\r
+ *  |---------------------------------------------------------------|\r
+ *  |   a or ab                 O_WRONLY|O_CREAT|O_APPEND           |\r
+ *  |---------------------------------------------------------------|\r
+ *  |   r+ or rb+ or r+b        O_RDWR                              |\r
+ *  |---------------------------------------------------------------|\r
+ *  |   w+ or wb+ or w+b               O_RDWR|O_CREAT|O_TRUNC              |\r
+ *  |---------------------------------------------------------------|\r
+ *  |   a+ or ab+ or a+b               O_RDWR|O_CREAT|O_APPEND             |\r
+ *  |---------------------------------------------------------------|\r
  *\r
  * @return     standard error code*/\r
 int    ext4_fopen (ext4_file *f, const char *path, const char *flags);\r
@@ -226,16 +226,16 @@ uint64_t ext4_fsize (ext4_file *f);
 \r
 /*********************************DIRECTORY OPERATION*************************/\r
 /**@brief      */\r
-int    ext4_mkdir(const char *path);\r
+int ext4_mkdir(const char *path);\r
 \r
 /**@brief      */\r
-int    ext4_rmdir(const char *path);\r
+int ext4_rmdir(const char *path);\r
 \r
 /**@brief      */\r
-int    ext4_dir_open (ext4_dir *d, const char *path);\r
+int ext4_dir_open (ext4_dir *d, const char *path);\r
 \r
 /**@brief      */\r
-int    ext4_dir_close(ext4_dir *d);\r
+int ext4_dir_close(ext4_dir *d);\r
 \r
 /**@brief      */\r
 ext4_direntry* ext4_entry_get(ext4_dir *d, uint32_t id);\r