00001 00016 #ifndef _FSD_DEVICE_H_ 00017 #define _FSD_DEVICE_H_ 00018 00019 00020 #include <stdio.h> 00021 00026 int fsd_chardevice_open(); 00027 int fsd_chardevice_close(int fsc_device); 00028 int fsd_chardevice_read(int fsc_device, char *buffer); 00029 int fsd_chardevice_write(int fsc_device, const char *buffer, int count); 00032 #endif 00033