*** empty log message ***
[yaffs/.git] / direct / ydirectenv.h
1 /*
2  * YAFFS: Yet another FFS. A NAND-flash specific file system. 
3  * ydirectenv.h: Environment wrappers for direct.
4  *
5  * Copyright (C) 2002 Aleph One Ltd.
6  *   for Toby Churchill Ltd and Brightstar Engineering
7  *
8  * Created by Charles Manning <charles@aleph1.co.uk>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU Lesser General Public License version 2.1 as
12  * published by the Free Software Foundation.
13  *
14  *
15  * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
16  *
17  * $Id: ydirectenv.h,v 1.1 2004-09-19 09:21:38 charles Exp $
18  *
19  */
20  
21 #ifndef __YDIRECTENV_H__
22 #define __YDIRECTENV_H__
23
24 // Direct interface
25
26 #include "stdlib.h"
27 #include "stdio.h"
28 #include "string.h"
29
30 #define YMALLOC(x) malloc(x)
31 #define YFREE(x)   free(x)
32
33
34 //#define YINFO(s) YPRINTF(( __FILE__ " %d %s\n",__LINE__,s))
35 //#define YALERT(s) YINFO(s)
36
37
38 #define TENDSTR "\n"
39 #define TSTR(x) x
40 #define TOUT(p) printf p
41
42
43 #define YAFFS_LOSTNFOUND_NAME           "lost+found"
44 #define YAFFS_LOSTNFOUND_PREFIX         "obj"
45 //#define YPRINTF(x) printf x
46
47 #include "yaffscfg.h"
48
49 #define CURRENT_TIME yaffsfs_CurrentTime()
50 #define YAFFS_ROOT_MODE                         0666
51 #define YAFFS_LOSTNFOUND_MODE           0666
52
53 #define yaffs_SumCompare(x,y) ((x) == (y))
54 #define yaffs_strcmp(a,b) strcmp(a,b)
55
56 #endif