yaffs Are trapping a suspeced bug in quick_tests.
[yaffs2.git] / direct / timothy_tests / quick_tests / lib.h
1 #ifndef _lib_h__
2 #define _lib_h__
3
4
5 #include <string.h>
6 #define YAFFS_MOUNT_POINT "/yaffs2/"
7 #define FILE_NAME "foo"
8 #define FILE_SIZE 9
9
10 #define FILE_MODE (S_IREAD | S_IWRITE)
11 #define FILE_SIZE_TRUNCATED 100
12 #define FILE_TEXT "file foo"
13 #define FILE_TEXT_NBYTES 9
14
15 /* warning do not define anything as FILE because there seems to be a conflict with stdio.h */ 
16 #define FILE_PATH "/yaffs2/foo"
17
18 void join_paths(char *path1,char *path2,char *new_path );
19 #endif