Improve YDI lookup and device prefic handling
[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.2 2005-10-07 03:48:50 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 #define YMALLOC_ALT(x) malloc(x)
47 #define YFREE_ALT(x)   free(x)
48
49
50 //#define YINFO(s) YPRINTF(( __FILE__ " %d %s\n",__LINE__,s))
51 //#define YALERT(s) YINFO(s)
52
53
54 #define TENDSTR "\n"
55 #define TSTR(x) x
56 #define TOUT(p) printf p
57
58
59 #define YAFFS_LOSTNFOUND_NAME           "lost+found"
60 #define YAFFS_LOSTNFOUND_PREFIX         "obj"
61 //#define YPRINTF(x) printf x
62
63 #include "yaffscfg.h"
64
65 #define Y_CURRENT_TIME yaffsfs_CurrentTime()
66 #define Y_TIME_CONVERT(x) x
67
68 #define YAFFS_ROOT_MODE                         0666
69 #define YAFFS_LOSTNFOUND_MODE           0666
70
71 #define yaffs_SumCompare(x,y) ((x) == (y))
72 #define yaffs_strcmp(a,b) strcmp(a,b)
73
74 #endif
75
76