device.c header

This commit is contained in:
Laurent Vivier 2005-11-16 14:03:30 +00:00
parent f6cdf4d2c9
commit 1d46991bab

13
tools/device.h Normal file
View File

@ -0,0 +1,13 @@
/*
*
* (c) 2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
*
*/
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
extern int device_open(void);
extern void device_close(void);
extern void device_read(off_t offset, void* buffer, size_t size);