SMREmulator 1.0
ShingledMagneticRecordingEmulator
|
00001 00009 #include <stdio.h> 00010 #include <fcntl.h> 00011 #include <errno.h> 00012 #include <stdarg.h> 00013 #include <string.h> 00014 #include <unistd.h> 00015 #include <time.h> 00016 00017 00018 00019 /* -- Type Definitions -- */ 00020 typedef struct { 00021 int (*error)(const char *, ...); 00022 int (*info)(const char *, ...); 00023 } edi_lops_t; 00024 00025 00026 00027 /* -- Function Prototypes -- */ 00028 edi_lops_t *emulog_open(const char *); 00029 int emulog_close();