Files
codezero/tasks/fs0/include/bdev.h
Bahadir Balban e2b791a3d8 Initial commit
2008-01-13 13:53:52 +00:00

9 lines
208 B
C

#ifndef __BLOCK_DEV_H__
#define __BLOCK_DEV_H__
void bdev_open(void);
void bdev_readpage(unsigned long offset, void *buf);
void bdev_writepage(unsigned long offset, void *buf);
#endif /* __BLOCK_DEV_H__ */