If kernel/config.h is included in yportenv.h, then yportenv.h must be
[yaffs2.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 2005-07-03 05:48:11 charles Exp $
18  *
19  */
20  
21 #ifndef __YDIRECTENV_H__
22 #define __YDIRECTENV_H__
23
24 // Direct interface
25
26 #include "devextras.h"
27
28 #include "stdlib.h"
29 #include "stdio.h"
30 #include "string.h"
31
32 #define YCHAR char
33 #define YUCHAR unsigned char
34 #define _Y(x) x
35 #define yaffs_strcpy(a,b)    strcpy(a,b)
36 #define yaffs_strncpy(a,b,c) strncpy(a,b,c)
37 #define yaffs_strlen(s)      strlen(s)
38 #define yaffs_sprintf        sprintf
39 #define yaffs_toupper(a)     toupper(a)
40
41 #define Y_INLINE inline
42
43
44 #define YMALLOC(x) malloc(x)
45 #define YFREE(x)   free(x)
46
47
48 //#define YINFO(s) YPRINTF(( __FILE__ " %d %s\n",__LINE__,s))
49 //#define YALERT(s) YINFO(s)
50
51
52 #define TENDSTR "\n"
53 #define TSTR(x) x
54 #define TOUT(p) printf p
55
56
57 #define YAFFS_LOSTNFOUND_NAME           "lost+found"
58 #define YAFFS_LOSTNFOUND_PREFIX         "obj"
59 //#define YPRINTF(x) printf x
60
61 #include "yaffscfg.h"
62
63 #define Y_CURRENT_TIME yaffsfs_CurrentTime()
64 #define Y_TIME_CONVERT(x) x
65
66 #define YAFFS_ROOT_MODE                         0666
67 #define YAFFS_LOSTNFOUND_MODE           0666
68
69 #define yaffs_SumCompare(x,y) ((x) == (y))
70 #define yaffs_strcmp(a,b) strcmp(a,b)
71
72 #endif
73
74