mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 02:43:15 +01:00
9 lines
208 B
C
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__ */
|