1/*
2 * Copyright 2005, Axel D��rfler, axeld@pinc-software.de.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _KERNEL_BLOCK_CACHE_H
6#define _KERNEL_BLOCK_CACHE_H
7
8
9#include <SupportDefs.h>
10
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16extern status_t block_cache_init(void);
17extern size_t block_cache_used_memory();
18
19#ifdef __cplusplus
20}
21#endif
22
23#endif	/* _KERNEL_BLOCK_CACHE_H */
24