yaffsfs.c: Fix NULL dereference in yaffs_unmount2_reldev()
[yaffs2.git] / direct / test-framework / yramsim.h
1 /*
2  * YAFFS: Yet another Flash File System . A NAND-flash specific file system. 
3  *
4  * Copyright (C) 2002-2018 Aleph One Ltd.
5  *
6  * Created by Charles Manning <charles@aleph1.co.uk>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU Lesser General Public License version 2.1 as
10  * published by the Free Software Foundation.
11  *
12  * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
13  */
14
15 /*  NAND RAM Simulator for testing YAFFS */
16
17 #ifndef __YAFFS_RAM_SIM_H__
18 #define __YAFFS_RAM_SIM_H__
19
20
21 #include "yaffs_guts.h"
22
23 #define N_RAM_SIM_DEVS  2
24
25 struct yaffs_dev *yramsim_CreateRamSim(const YCHAR *name,
26                                                 u32 devId, u32 nBlocks,
27                                                 u32 start_block, u32 end_block);
28
29 #endif
30
31