X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_open.c;h=af7b7542aeccb61fa60249fdbde023286f45b830;hp=068ceea09cb48befa02cd0bbdb68353a920f8455;hb=a45194dd1a23a750f4ee8912258243dcdbcac69a;hpb=fa6335ddf55329c1ba1c50c68080a559461151cc diff --git a/direct/timothy_tests/quick_tests/test_yaffs_open.c b/direct/timothy_tests/quick_tests/test_yaffs_open.c index 068ceea..af7b754 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_open.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_open.c @@ -1,20 +1,33 @@ -#include "test_yaffs_open.h" +/* + * YAFFS: Yet another FFS. A NAND-flash specific file system. + * + * Copyright (C) 2002-2010 Aleph One Ltd. + * for Toby Churchill Ltd and Brightstar Engineering + * + * Created by Timothy Manning + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ -static int handle=0; +#include "test_yaffs_open.h" -int test_yaffs_open(void){ +static int handle = 0; - handle=yaffs_open(FILE_PATH,O_CREAT | O_TRUNC| 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 */ } }