yaffs Restructuring timothy_tests folder.
[yaffs2.git] / direct / timothy_tests / dev / yaffs_tester.h
1 /*
2  * YAFFS: Yet another Flash File System . A NAND-flash specific file system. 
3  *
4  * Copyright (C) 2002-2010 Aleph One Ltd.
5  *   for Toby Churchill Ltd and Brightstar Engineering
6  *
7  * Created by Timothy Manning <timothy@yaffs.net>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU Lesser General Public License version 2.1 as
11  * published by the Free Software Foundation.
12  *
13  * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
14  */
15
16 #ifndef __YAFFS_TESTER_H__
17         #define __YAFFS_TESTER_H__
18
19 #include <string.h>
20 #include <stdio.h>
21         
22 #include "yaffsfs.h"    /* it is in "yaffs2/direct/" link it in the Makefile */
23 #include "message_buffer.h"
24 #include "error_handler.h"
25         
26
27 #define MAX_FILE_NAME_SIZE 51
28
29 void init(char *yaffs_test_dir,char *yaffs_mount_dir);  /*sets up yaffs and mounts yaffs */
30 void test(char *yaffs_test_dir);                                /*contains the test code*/
31 void generate_random_string(char *ptr);                         /*generates a random string of letters to be used for a name*/
32 void join_paths(char *path1,char *path2,char *newpath );
33 void copy_array(char *from,char *to, unsigned int from_offset,unsigned int to_offset);
34 #endif