Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

floppy.h 275 B

1234567891011121314
  1. struct floppy_drive {
  2. char type[16];
  3. u8 status;
  4. };
  5. struct floppy_info {
  6. int count;
  7. struct floppy_drive drive[2];
  8. };
  9. int floppy_get_info(struct floppy_info *floppy_info);
  10. void floppy_print_info(struct floppy_info *floppy_info);
  11. int floppy_get_status(void);