yaffs Have revised and checked each test in quick tests.
[yaffs2.git] / direct / timothy_tests / quick_tests / test_yaffs_open.c
index d7237a89cbaec6e8732c4c1a4f2bc76dcc567b07..af7b7542aeccb61fa60249fdbde023286f45b830 100644 (file)
 
 #include "test_yaffs_open.h"
 
-static int handle=0;
+static int handle = 0;
 
-int test_yaffs_open(void){
-
-       handle=yaffs_open(FILE_PATH,O_CREAT | O_RDWR, FILE_MODE);
+int test_yaffs_open(void)
+{
+       handle = yaffs_open(FILE_PATH,O_CREAT | O_RDWR, FILE_MODE);
        return handle;
 }
 
 
-int test_yaffs_open_clean(void){
-       if (handle >=0){
+int test_yaffs_open_clean(void)
+{
+       if (handle >= 0){
                return yaffs_close(handle);
-       }
-       else {
-               return 1;       /* the file failed to open so there is no need to close it*/
+       } else {
+               return 1;       /* the file failed to open so there is no need to close it */
        }
 }