buse/abuse.h

15 lines
232 B
C
Raw Normal View History

#ifndef ABUSE_H_INCLUDED
#define ABUSE_H_INCLUDED
struct abuse_operations {
void (*read)();
void (*write)();
void (*disc)();
void (*flush)();
void (*trim)();
};
2011-09-20 10:31:35 +02:00
int abuse_main();
#endif /* ABUSE_H_INCLUDED */