1/*
2 * Copyright 2007, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * All rights reserved. Distributed under the terms of the MIT license.
4 */
5
6#ifndef RAM_FS_H
7#define RAM_FS_H
8
9#include <SupportDefs.h>
10
11extern struct fs_vnode_ops gRamFSVnodeOps;
12extern struct fs_volume_ops gRamFSVolumeOps;
13const size_t kMaxIndexKeyLength = 256;
14
15#endif	// RAM_FS_H
16